mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 22:22:58 +00:00

PR-URL: https://github.com/nodejs/node/pull/3310 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
27 lines
723 B
JavaScript
27 lines
723 B
JavaScript
module.exports = fileCompletion
|
|
|
|
var mkdir = require('mkdirp')
|
|
var path = require('path')
|
|
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) {
|
|
var tail = f.substr(root.length + 1).replace(/^\//, '')
|
|
return path.join(req, tail)
|
|
}))
|
|
})
|
|
})
|
|
}
|