node/lib/sys.js

10 строки
288 B
JavaScript
Исходник Обычный вид История

'use strict';
2012-06-28 21:13:28 +04: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');