настройка webpack
This commit is contained in:
21
node_modules/cacache/lib/content/rm.js
generated
vendored
Normal file
21
node_modules/cacache/lib/content/rm.js
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
'use strict'
|
||||
|
||||
const BB = require('bluebird')
|
||||
|
||||
const contentPath = require('./path')
|
||||
const hasContent = require('./read').hasContent
|
||||
const rimraf = BB.promisify(require('rimraf'))
|
||||
|
||||
module.exports = rm
|
||||
function rm (cache, integrity) {
|
||||
return hasContent(cache, integrity).then(content => {
|
||||
if (content) {
|
||||
const sri = content.sri
|
||||
if (sri) {
|
||||
return rimraf(contentPath(cache, sri)).then(() => true)
|
||||
}
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user