/
home2
/
dakshskx
/
nodejs
/
lib
/
node_modules
/
npm
/
lib
/
utils
/
completion
/
/home2/dakshskx/nodejs/lib/node_modules/npm/lib/utils/completion
mkdir
upload
Name
Size
Mode
Actions
installed-deep.js
1122
0644
edit
dl
rm
installed-shallow.js
543
0644
edit
dl
rm
Edit:
/home2/dakshskx/nodejs/lib/node_modules/npm/lib/utils/completion/installed-shallow.js
(543B)
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
Save
cmd:
run