UNPKG

235 BJavaScriptView Raw
1
2module.exports = get
3
4get.usage = "npm get <key> <value> (See `npm config`)"
5
6var npm = require("./npm.js")
7
8get.completion = npm.commands.config.completion
9
10function get (args, cb) {
11 npm.commands.config(["get"].concat(args), cb)
12}