🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 08:46:30 | PHP 8.1.34
📂
/ (Root)
/
opt
/
alt
/
alt-nodejs10
/
root
/
usr
/
lib
/
node_modules
/
npm
/
lib
/
utils
/
completion
📍 /opt/alt/alt-nodejs10/root/usr/lib/node_modules/npm/lib/utils/completion
🔄 Refresh
✏️
Editing: file-completion.js
Read Only
module.exports = fileCompletion var mkdir = require('mkdirp') var glob = require('glob') function fileCompletion (root, req, depth, cb) { if (typeof cb !== 'function') { cb = depth depth = Infinity } mkdir(root, function (er) { if (er) return cb(er) // can be either exactly the req, or a descendent var pattern = root + '/{' + req + ',' + req + '/**/*}' var opts = { mark: true, dot: true, maxDepth: depth } glob(pattern, opts, function (er, files) { if (er) return cb(er) return cb(null, (files || []).map(function (f) { return f.substr(root.length + 1).replace(/^\/|\/$/g, '') })) }) }) }
💾 Save Changes
❌ Cancel