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

Version Path
tang-0.2.1 spec/tang_app/node_modules/cacache/lib/content/rm.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/cacache/lib/content/rm.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/compression-webpack-plugin/node_modules/cacache/lib/content/rm.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/cacache/lib/content/rm.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/cacache/lib/content/rm.js
tang-0.2.0 spec/tang_app/node_modules/cacache/lib/content/rm.js
tang-0.1.0 spec/tang_app/node_modules/cacache/lib/content/rm.js
tang-0.0.9 spec/tang_app/node_modules/cacache/lib/content/rm.js