mirror of https://github.com/nodejs/node.git
10 lines
299 B
JavaScript
10 lines
299 B
JavaScript
'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');
|