X7ROOT File Manager
Current Path:
/lib/node_modules/npm/node_modules/cacache
lib
/
node_modules
/
npm
/
node_modules
/
cacache
/
ðŸ“
..
📄
CHANGELOG.md
(22.31 KB)
📄
LICENSE.md
(755 B)
📄
README.es.md
(20.48 KB)
📄
README.md
(20 KB)
📄
en.js
(58 B)
📄
es.js
(58 B)
📄
get.js
(6.71 KB)
📄
index.js
(58 B)
ðŸ“
lib
ðŸ“
locales
📄
ls.js
(121 B)
📄
package.json
(3.32 KB)
📄
put.js
(1.91 KB)
📄
rm.js
(661 B)
📄
verify.js
(55 B)
Editing: rm.js
'use strict' const BB = require('bluebird') const index = require('./lib/entry-index') const memo = require('./lib/memoization') const path = require('path') const rimraf = BB.promisify(require('rimraf')) const rmContent = require('./lib/content/rm') module.exports = entry module.exports.entry = entry function entry (cache, key) { memo.clearMemoized() return index.delete(cache, key) } 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-*)')) }
Upload File
Create Folder