Sha256: 7ec9682ee3472435d866bdd35d18e2d570ffe98621bc230f30d31443bd04d8f7

Contents?: true

Size: 737 Bytes

Versions: 63

Compression:

Stored size: 737 Bytes

Contents

'use strict'

const contentVer = require('../../package.json')['cache-version'].content
const hashToSegments = require('../util/hash-to-segments')
const path = require('path')
const ssri = require('ssri')

// Current format of content file path:
//
// sha512-BaSE64Hex= ->
// ~/.my-cache/content-v2/sha512/ba/da/55deadbeefc0ffee
//
module.exports = contentPath

function contentPath (cache, integrity) {
  const sri = ssri.parse(integrity, { single: true })
  // contentPath is the *strongest* algo given
  return path.join(
    contentDir(cache),
    sri.algorithm,
    ...hashToSegments(sri.hexDigest())
  )
}

module.exports.contentDir = contentDir

function contentDir (cache) {
  return path.join(cache, `content-v${contentVer}`)
}

Version data entries

63 entries across 38 versions & 5 rubygems

Version Path
immosquare-cleaner-0.1.51 node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.51 node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.50 node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.50 node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.49 node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.49 node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.48 node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.48 node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.47 node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.47 node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.46 node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.46 node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.45 node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.45 node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.44 node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.44 node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.43 node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.43 node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.42 node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/lib/content/path.js
immosquare-cleaner-0.1.42 node_modules/cacache/lib/content/path.js