summaryrefslogtreecommitdiff
path: root/lib/sys.js
blob: a34ea0b899f82453da834a0264b4d3b6623c9bff (plain)
1
2
3
4
5
6
7
8
9
10
'use strict';

const util = require('internal/util');

// the sys module was renamed to 'util'.
// this shim remains to keep old programs working.
// sys is deprecated and shouldn't be used

module.exports = require('util');
util.printDeprecationMessage('sys is deprecated. Use util instead.');