summaryrefslogtreecommitdiff
path: root/lib/sys.js
blob: c94b032c649662773f9a0d4a97e769d4a16d208a (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');