✏️ 正在编辑: installed-shallow.js
路径:
/opt/alt/alt-nodejs19/root/usr/lib/node_modules/npm/lib/utils/completion/installed-shallow.js
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
const { readdirScoped } = require('@npmcli/fs') const installedShallow = async (npm, opts) => { const names = async global => { const paths = await readdirScoped(global ? npm.globalDir : npm.localDir) return paths.map(p => p.replace(/\\/g, '/')) } 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
💾 保存文件
← 返回文件管理器