Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sys: Mark as deprecated #309

Closed
wants to merge 4 commits into from
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();