🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 15:42:56 | PHP 8.1.34
📂
/ (Root)
/
usr
/
lib
/
node_modules
/
npm
/
lib
/
utils
/
completion
📍 /usr/lib/node_modules/npm/lib/utils/completion
🔄 Refresh
✏️
Editing: installed-shallow.js
Read Only
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 Changes
❌ Cancel