mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
13 lines
235 B
JavaScript
13 lines
235 B
JavaScript
|
|
||
|
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)
|
||
|
}
|