Files
bm/public_html/public/node_modules/npm/lib/utils/depr-check.js
2025-09-24 13:26:28 +02:00

14 lines
390 B
JavaScript

var log = require("npmlog")
var deprecated = {}
, deprWarned = {}
module.exports = function deprCheck (data) {
if (deprecated[data._id]) data.deprecated = deprecated[data._id]
if (data.deprecated) deprecated[data._id] = data.deprecated
else return
if (!deprWarned[data._id]) {
deprWarned[data._id] = true
log.warn("deprecated", "%s: %s", data._id, data.deprecated)
}
}