(statusCode, store, cacheKey)
| 463 | } |
| 464 | |
| 465 | function deleteCachedValueIfNotModified (statusCode, store, cacheKey) { |
| 466 | if (statusCode === 304) { |
| 467 | deleteCachedValue(store, cacheKey) |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | /** |
| 472 | * @param {import('../../types/cache-interceptor.d.ts').default.CacheOptions['type']} cacheType |
no test coverage detected