0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/deps/npm/lib/get.js
Ryan Dahl b488be127a Include NPM, update .pkg to install it.
.msi update coming soon.
2011-11-21 10:50:52 -08:00

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)
}