✏️ 正在编辑: installed-shallow.js
路径:
/opt/alt/alt-nodejs16/root/usr/lib/node_modules/npm/lib/utils/completion/installed-shallow.js
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
const { promisify } = require('util') const readdir = promisify(require('readdir-scoped-modules')) const installedShallow = async (npm, opts) => { const names = global => readdir(global ? npm.globalDir : npm.localDir) const { conf: { argv: { remain } } } = opts if (remain.length > 3) { return null } const { global } = npm.flatOptions const locals = global ? [] : await names(false) const globals = (await names(true)).map(n => global ? n : `${n} -g`) return [...locals, ...globals] } module.exports = installedShallow
💾 保存文件
← 返回文件管理器