summaryrefslogtreecommitdiff
path: root/deps/npm/lib/utils/completion/file-completion.js
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2015-10-09 23:13:57 -0700
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2015-10-22 13:56:09 -0400
commit41923c0c0795cfa6c465821387fca88fe8811367 (patch)
tree853587bc888fde98f714d72050edceb4785145de /deps/npm/lib/utils/completion/file-completion.js
parent9b8886446dd183cee26adf9c603f8e1cd5da74bd (diff)
downloadnode-new-41923c0c0795cfa6c465821387fca88fe8811367.tar.gz
deps: upgrade npm to 3.3.6
PR-URL: https://github.com/nodejs/node/pull/3310 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Diffstat (limited to 'deps/npm/lib/utils/completion/file-completion.js')
-rw-r--r--deps/npm/lib/utils/completion/file-completion.js17
1 files changed, 10 insertions, 7 deletions
diff --git a/deps/npm/lib/utils/completion/file-completion.js b/deps/npm/lib/utils/completion/file-completion.js
index 6ce2f83467..78777a025e 100644
--- a/deps/npm/lib/utils/completion/file-completion.js
+++ b/deps/npm/lib/utils/completion/file-completion.js
@@ -1,21 +1,24 @@
module.exports = fileCompletion
-var mkdir = require("mkdirp")
- , path = require("path")
- , glob = require("glob")
+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
+ 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 + "/**/*}"
- , opts = { mark: true, dot: true, maxDepth: depth }
+ 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(/^\//, "")
+ var tail = f.substr(root.length + 1).replace(/^\//, '')
return path.join(req, tail)
}))
})