Sha256: 0bfca0bf7684d819791a49c667423843d85805bca123f2b943d9a3c5fc099bb7
Contents?: true
Size: 511 Bytes
Versions: 8
Compression:
Stored size: 511 Bytes
Contents
'use strict' const util = require('util') const contentPath = require('./path') const { hasContent } = require('./read') const rimraf = util.promisify(require('rimraf')) module.exports = rm function rm (cache, integrity) { return hasContent(cache, integrity).then((content) => { // ~pretty~ sure we can't end up with a content lacking sri, but be safe if (content && content.sri) { return rimraf(contentPath(cache, content.sri)).then(() => true) } else { return false } }) }
Version data entries
8 entries across 7 versions & 3 rubygems