Skip to content
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion lib/sys.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@

'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');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Small nit, but could you change this to:

sys is deprecated. Use util instead. (Ref: #166 (comment))


setExports();