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/get.js')
-rw-r--r--lib/get.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/get.js b/lib/get.js
index aa058002e..8dc805ec5 100644
--- a/lib/get.js
+++ b/lib/get.js
@@ -1,12 +1,12 @@
module.exports = get
-get.usage = "npm get <key> <value> (See `npm config`)"
+get.usage = 'npm get <key> <value> (See `npm config`)'
-var npm = require("./npm.js")
+var npm = require('./npm.js')
get.completion = npm.commands.config.completion
function get (args, cb) {
- npm.commands.config(["get"].concat(args), cb)
+ npm.commands.config(['get'].concat(args), cb)
}