mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
5de3cf099c
Assigns a static identifier code to all runtime and documentation only deprecations. The identifier code is included in the emitted DeprecationWarning. Also adds a deprecations.md to the API docs to provide a central location where deprecation codes can be referenced and explained. PR-URL: https://github.com/nodejs/node/pull/10116 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Michal Zasso <targos@protonmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
10 lines
299 B
JavaScript
10 lines
299 B
JavaScript
'use strict';
|
|
|
|
// 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', 'DEP0025');
|