📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 16:57:59
📂
/ (Root)
/
lib
/
node_modules
/
npm
/
lib
/
utils
📍 /lib/node_modules/npm/lib/utils
🔄 Refresh
✏️
Editing: depr-check.js
Read Only
'use strict' const log = require('npmlog') const deprecated = {} const deprWarned = {} module.exports = deprCheck function deprCheck (data) { if (deprecated[data._id]) { data.deprecated = deprecated[data._id] } if (data.deprecated) { deprecated[data._id] = data.deprecated if (!deprWarned[data._id]) { deprWarned[data._id] = true log.warn('deprecated', '%s: %s', data._id, data.deprecated) } } return data }
💾 Save Changes
❌ Cancel