tra-analysis/website/node_modules/npm/lib/get.js

13 lines
235 B
JavaScript
Raw Normal View History

2019-01-06 19:14:45 +00:00
module.exports = get
get.usage = 'npm get <key> <value> (See `npm config`)'
var npm = require('./npm.js')
get.completion = npm.commands.config.completion
function get (args, cb) {
npm.commands.config(['get'].concat(args), cb)
}