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

// 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');
process.emitWarning('sys is deprecated. Use util instead.',
                    'DeprecationWarning', 'DEP0025');