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:
authorGar <gar+gh@danger.computer>2022-03-14 23:53:34 +0300
committernlf <nlf@github.com>2022-03-15 23:38:37 +0300
commite26548fb12a3bb23fbe32a336f1305e083aa51c0 (patch)
treeabc72b0d62357e79bb1d5626a553c9e4de85bb68 /node_modules/cacache/rm.js
parentf6b771aabece09dca2231426d4f681d3578e5ab7 (diff)
deps: cacache@16.0.0
Diffstat (limited to 'node_modules/cacache/rm.js')
-rw-r--r--node_modules/cacache/rm.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/node_modules/cacache/rm.js b/node_modules/cacache/rm.js
deleted file mode 100644
index f2ef6b190..000000000
--- a/node_modules/cacache/rm.js
+++ /dev/null
@@ -1,31 +0,0 @@
-'use strict'
-
-const util = require('util')
-
-const index = require('./lib/entry-index')
-const memo = require('./lib/memoization')
-const path = require('path')
-const rimraf = util.promisify(require('rimraf'))
-const rmContent = require('./lib/content/rm')
-
-module.exports = entry
-module.exports.entry = entry
-
-function entry (cache, key, opts) {
- memo.clearMemoized()
- return index.delete(cache, key, opts)
-}
-
-module.exports.content = content
-
-function content (cache, integrity) {
- memo.clearMemoized()
- return rmContent(cache, integrity)
-}
-
-module.exports.all = all
-
-function all (cache) {
- memo.clearMemoized()
- return rimraf(path.join(cache, '*(content-*|index-*)'))
-}