You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
271 B

module.exports = prefix
var npm = require("./npm.js")
, output = require("./utils/output.js")
prefix.usage = "npm prefix\nnpm prefix -g\n(just prints the prefix folder)"
function prefix (args, cb) {
output.write(npm.prefix, function (er) { cb(er, npm.prefix) })
}