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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/set.js')
-rw-r--r--lib/set.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/set.js b/lib/set.js
index c83602ec1..b5e7376fb 100644
--- a/lib/set.js
+++ b/lib/set.js
@@ -1,13 +1,13 @@
module.exports = set
-set.usage = "npm set <key> <value> (See `npm config`)"
+set.usage = 'npm set <key> <value> (See `npm config`)'
-var npm = require("./npm.js")
+var npm = require('./npm.js')
set.completion = npm.commands.config.completion
function set (args, cb) {
if (!args.length) return cb(set.usage)
- npm.commands.config(["set"].concat(args), cb)
+ npm.commands.config(['set'].concat(args), cb)
}