mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 02:19:02 +00:00

PR-URL: https://github.com/nodejs/node/pull/12936 Reviewed-By: Anna Henningsen <anna@addaleax.net>
7 lines
129 B
JavaScript
7 lines
129 B
JavaScript
'use strict'
|
|
|
|
module.exports = cacheKey
|
|
function cacheKey (type, identifier) {
|
|
return ['pacote', type, identifier].join(':')
|
|
}
|