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
This commit is contained in:
Wyatt Preul 2015-01-12 18:41:07 -06:00 коммит произвёл Rod Vagg
Родитель 0bf1d124af
Коммит dc42e1faaf
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,13 @@
'use strict';
var util = require('util');
// the sys module was renamed to 'util'.
// 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();