mirror of https://github.com/nodejs/node.git
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;
|
|
};
|