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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/config/load-prefix.js')
-rw-r--r--lib/config/load-prefix.js48
1 files changed, 24 insertions, 24 deletions
diff --git a/lib/config/load-prefix.js b/lib/config/load-prefix.js
index 39d076fb7..01a925280 100644
--- a/lib/config/load-prefix.js
+++ b/lib/config/load-prefix.js
@@ -1,43 +1,43 @@
module.exports = loadPrefix
-var findPrefix = require("./find-prefix.js")
-var path = require("path")
+var findPrefix = require('./find-prefix.js')
+var path = require('path')
function loadPrefix (cb) {
var cli = this.list[0]
- Object.defineProperty(this, "prefix",
- { set : function (prefix) {
- var g = this.get("global")
- this[g ? "globalPrefix" : "localPrefix"] = prefix
- }.bind(this)
- , get : function () {
- var g = this.get("global")
+ Object.defineProperty(this, 'prefix',
+ { set: function (prefix) {
+ var g = this.get('global')
+ this[g ? 'globalPrefix' : 'localPrefix'] = prefix
+ }.bind(this),
+ get: function () {
+ var g = this.get('global')
return g ? this.globalPrefix : this.localPrefix
- }.bind(this)
- , enumerable : true
+ }.bind(this),
+ enumerable: true
})
- Object.defineProperty(this, "globalPrefix",
- { set : function (prefix) {
- this.set("prefix", prefix)
- }.bind(this)
- , get : function () {
- return path.resolve(this.get("prefix"))
- }.bind(this)
- , enumerable : true
+ Object.defineProperty(this, 'globalPrefix',
+ { set: function (prefix) {
+ this.set('prefix', prefix)
+ }.bind(this),
+ get: function () {
+ return path.resolve(this.get('prefix'))
+ }.bind(this),
+ enumerable: true
})
var p
- Object.defineProperty(this, "localPrefix",
- { set : function (prefix) { p = prefix },
- get : function () { return p }
- , enumerable: true })
+ Object.defineProperty(this, 'localPrefix',
+ { set: function (prefix) { p = prefix },
+ get: function () { return p },
+ enumerable: true })
// try to guess at a good node_modules location.
// If we are *explicitly* given a prefix on the cli, then
// always use that. otherwise, infer local prefix from cwd.
- if (Object.prototype.hasOwnProperty.call(cli, "prefix")) {
+ if (Object.prototype.hasOwnProperty.call(cli, 'prefix')) {
p = path.resolve(cli.prefix)
process.nextTick(cb)
} else {