mirror of https://github.com/nodejs/node.git
util: move deprecate() to internal module
PR-URL: https://github.com/nodejs/io.js/pull/1988 Reviewed-By: Roman Reiss <me@silverwind.io>pull/1988/merge
parent
671e64ac73
commit
1d79f572f1
|
@ -16,3 +16,27 @@ exports.printDeprecationMessage = function(msg, warned) {
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Mark that a method should not be used.
|
||||||
|
// Returns a modified function which warns once by default.
|
||||||
|
// If --no-deprecation is set, then it is a no-op.
|
||||||
|
exports.deprecate = function(fn, msg) {
|
||||||
|
// Allow for deprecating things in the process of starting up.
|
||||||
|
if (global.process === undefined) {
|
||||||
|
return function() {
|
||||||
|
return exports.deprecate(fn, msg).apply(this, arguments);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (process.noDeprecation === true) {
|
||||||
|
return fn;
|
||||||
|
}
|
||||||
|
|
||||||
|
var warned = false;
|
||||||
|
function deprecated() {
|
||||||
|
warned = exports.printDeprecationMessage(msg, warned);
|
||||||
|
return fn.apply(this, arguments);
|
||||||
|
}
|
||||||
|
|
||||||
|
return deprecated;
|
||||||
|
};
|
||||||
|
|
24
lib/util.js
24
lib/util.js
|
@ -48,29 +48,7 @@ exports.format = function(f) {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
// Mark that a method should not be used.
|
exports.deprecate = internalUtil.deprecate;
|
||||||
// Returns a modified function which warns once by default.
|
|
||||||
// If --no-deprecation is set, then it is a no-op.
|
|
||||||
exports.deprecate = function(fn, msg) {
|
|
||||||
// Allow for deprecating things in the process of starting up.
|
|
||||||
if (global.process === undefined) {
|
|
||||||
return function() {
|
|
||||||
return exports.deprecate(fn, msg).apply(this, arguments);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (process.noDeprecation === true) {
|
|
||||||
return fn;
|
|
||||||
}
|
|
||||||
|
|
||||||
var warned = false;
|
|
||||||
function deprecated() {
|
|
||||||
warned = internalUtil.printDeprecationMessage(msg, warned);
|
|
||||||
return fn.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
|
||||||
return deprecated;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
var debugs = {};
|
var debugs = {};
|
||||||
|
|
Loading…
Reference in New Issue