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
path: root/npm.js
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2010-03-05 09:14:41 +0300
committerisaacs <i@izs.me>2010-03-05 09:14:41 +0300
commit205fc932911b0d38480e9d002591b4078fb30e77 (patch)
treed3ba679a47c9903f814b1d881fcb975c0d64b3fc /npm.js
parent8073b0b9838b36847bed1fa9d93ed6b7390cb2c7 (diff)
Regression in utils refactor.
Diffstat (limited to 'npm.js')
-rwxr-xr-xnpm.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/npm.js b/npm.js
index 32984ec53..302ad57d2 100755
--- a/npm.js
+++ b/npm.js
@@ -26,8 +26,8 @@ npm.list = npm.ls;
var registry = {};
-npm.set = function set (name, data) { return set(registry, name, data) };
-npm.get = function get (name) { return get(registry, name) };
+npm.set = function (name, data) { return set(registry, name, data) };
+npm.get = function (name) { return get(registry, name) };
var path = require("path");