????

Your IP : 216.73.216.121


Current Path : /usr/lib/node_modules/npm/lib/
Upload File :
Current File : //usr/lib/node_modules/npm/lib/root.js

module.exports = root

var npm = require("./npm.js")

root.usage = "npm root\nnpm root -g\n(just prints the root folder)"

function root (args, silent, cb) {
  if (typeof cb !== "function") cb = silent, silent = false
  if (!silent) console.log(npm.dir)
  process.nextTick(cb.bind(this, null, npm.dir))
}