* @param {string} url A cache key whose SRI you want to look up. * @return {string} The subresource integrity associated with the cache key, * or undefined if it's not set.
(cacheKey)
| 4052 | * or undefined if it's not set. |
| 4053 | */ |
| 4054 | getIntegrityForCacheKey(cacheKey) { |
| 4055 | return this._cacheKeysToIntegrities.get(cacheKey); |
| 4056 | } |
| 4057 | /** |
| 4058 | * This acts as a drop-in replacement for |
| 4059 | * [`cache.match()`](https://developer.mozilla.org/en-US/docs/Web/API/Cache/match) |