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/unstar.js')
-rw-r--r--deps/npm/lib/unstar.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/npm/lib/unstar.js b/deps/npm/lib/unstar.js
index 5dea5bcab0e..554bd60bc9d 100644
--- a/deps/npm/lib/unstar.js
+++ b/deps/npm/lib/unstar.js
@@ -1,4 +1,4 @@
-const { usage, completion } = require('./star.js')
+const { usage } = require('./star.js')
const npm = require('./npm.js')
const unstar = (args, cb) => {
@@ -6,4 +6,4 @@ const unstar = (args, cb) => {
return npm.commands.star(args, cb)
}
-module.exports = Object.assign(unstar, { usage, completion })
+module.exports = Object.assign(unstar, { usage })