mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 19:50:17 +00:00

Contains the following npm releases: - https://github.com/npm/npm/releases/tag/v3.9.6 - https://github.com/npm/npm/releases/tag/v3.10.0 - https://github.com/npm/npm/releases/tag/v3.10.1 - https://github.com/npm/npm/releases/tag/v3.10.2 PR-URL: https://github.com/nodejs/node/pull/7410 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
16 lines
316 B
JavaScript
16 lines
316 B
JavaScript
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))
|
|
}
|