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.
15 lines
316 B
15 lines
316 B
module.exports = root
|
|
|
|
var npm = require('./npm.js')
|
|
var output = require('./utils/output.js')
|
|
|
|
root.usage = 'npm root [-g]'
|
|
|
|
function root (args, silent, cb) {
|
|
if (typeof cb !== 'function') {
|
|
cb = silent
|
|
silent = false
|
|
}
|
|
if (!silent) output(npm.dir)
|
|
process.nextTick(cb.bind(this, null, npm.dir))
|
|
}
|