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: 5adcd0d9271cfd9b39922cdfb0d82c8c2277cd11 (plain)
1
2
3
4
5
6
7
8
module.exports = prefix

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

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

function prefix (args, cb) { output.write(npm.prefix, cb) }