1'use strict' 2 3module.exports = cacheKey 4function cacheKey (type, identifier) { 5 return ['pacote', type, identifier].join(':') 6} 7