mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
d538811fc8
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
330 B
JavaScript
16 lines
330 B
JavaScript
module.exports = prefix
|
|
|
|
var npm = require('./npm.js')
|
|
var output = require('./utils/output.js')
|
|
|
|
prefix.usage = 'npm prefix [-g]'
|
|
|
|
function prefix (args, silent, cb) {
|
|
if (typeof cb !== 'function') {
|
|
cb = silent
|
|
silent = false
|
|
}
|
|
if (!silent) output(npm.prefix)
|
|
process.nextTick(cb.bind(this, null, npm.prefix))
|
|
}
|