mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 03:56:02 +00:00

`printDeprecationMessage` is used to deprecate modules and execution branches. PR-URL: https://github.com/nodejs/io.js/pull/1822 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
19 lines
323 B
JavaScript
19 lines
323 B
JavaScript
'use strict';
|
|
|
|
exports.printDeprecationMessage = function(msg, warned) {
|
|
if (process.noDeprecation)
|
|
return true;
|
|
|
|
if (warned)
|
|
return warned;
|
|
|
|
if (process.throwDeprecation)
|
|
throw new Error(msg);
|
|
else if (process.traceDeprecation)
|
|
console.trace(msg);
|
|
else
|
|
console.error(msg);
|
|
|
|
return true;
|
|
};
|