Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cache-key.js « util « lib « pacote « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 157e60b0dd64b203d5a2df0805aec28563424456 (plain)
1
2
3
4
5
6
'use strict'

module.exports = cacheKey
function cacheKey (type, identifier) {
  return ['pacote', type, identifier].join(':')
}