Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/lib/cache.js')
-rw-r--r--deps/npm/lib/cache.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/npm/lib/cache.js b/deps/npm/lib/cache.js
index 30d6aef863a..7b84353b4a1 100644
--- a/deps/npm/lib/cache.js
+++ b/deps/npm/lib/cache.js
@@ -19,17 +19,17 @@ const usage = usageUtil('cache',
'\nnpm cache verify'
)
-const completion = (opts, cb) => {
+const completion = async (opts) => {
const argv = opts.conf.argv.remain
if (argv.length === 2)
- return cb(null, ['add', 'clean', 'verify'])
+ return ['add', 'clean', 'verify']
// TODO - eventually...
switch (argv[2]) {
case 'verify':
case 'clean':
case 'add':
- return cb(null, [])
+ return []
}
}