* Converts a module id and scheme to a cache key * @param {string} id The module id * @param {string} scheme The URL scheme * @returns {string} The cache key
(id, scheme)
| 100 | * @returns {string} The cache key |
| 101 | */ |
| 102 | function toCacheKey(id, scheme) { |
| 103 | return `${VALUE_DEP_VERSION}/${toVid(id, scheme)}`; |
| 104 | } |
| 105 | |
| 106 | class VirtualUrlPlugin { |
| 107 | /** |