Browse Source

sys: Mark as deprecated

PR-URL: https://github.com/iojs/io.js/pull/317
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>

discussed at TC meeting, deprecate, don't remove
v1.8.0-commit
Wyatt Preul 10 years ago
committed by Rod Vagg
parent
commit
dc42e1faaf
  1. 10
      lib/sys.js

10
lib/sys.js

@ -1,5 +1,13 @@
'use strict'; 'use strict';
var util = require('util');
// the sys module was renamed to 'util'. // the sys module was renamed to 'util'.
// this shim remains to keep old programs working. // this shim remains to keep old programs working.
module.exports = require('util'); // sys is deprecated and shouldn't be used
var setExports = util.deprecate(function() {
module.exports = util;
}, 'sys is deprecated. Use util instead.');
setExports();

Loading…
Cancel
Save