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 'node_modules/npm-cache-filename/README.md')
-rw-r--r--node_modules/npm-cache-filename/README.md21
1 files changed, 0 insertions, 21 deletions
diff --git a/node_modules/npm-cache-filename/README.md b/node_modules/npm-cache-filename/README.md
deleted file mode 100644
index 47bd08a49..000000000
--- a/node_modules/npm-cache-filename/README.md
+++ /dev/null
@@ -1,21 +0,0 @@
-# npm-cache-filename
-
-Given a cache folder and url, return the appropriate cache folder.
-
-## USAGE
-
-```javascript
-var cf = require('npm-cache-filename');
-console.log(cf('/tmp/cache', 'https://registry.npmjs.org:1234/foo/bar'));
-// outputs: /tmp/cache/registry.npmjs.org_1234/foo/bar
-```
-
-As a bonus, you can also bind it to a specific root path:
-
-```javascript
-var cf = require('npm-cache-filename');
-var getFile = cf('/tmp/cache');
-
-console.log(getFile('https://registry.npmjs.org:1234/foo/bar'));
-// outputs: /tmp/cache/registry.npmjs.org_1234/foo/bar
-```