0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/lib/sys.js

10 lines
288 B
JavaScript
Raw Normal View History

'use strict';
2012-06-28 19:13:28 +02:00
// 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');