Welcome to mirror list, hosted at ThFree Co, Russian Federation.

prefix.js « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aebe1993a040e21d5defcf1e838a1a472969195d (plain)
1
2
3
4
5
6
7
8
module.exports = prefix

var npm = require("../npm")
  , output = require("./utils/output")

function prefix (args, cb) {
  output.write(npm.config.get("outfd"), npm.prefix, cb)
}