(statusCode, store, cacheKey)
| 477 | } |
| 478 | |
| 479 | function deleteCachedValueIfNotModified (statusCode, store, cacheKey) { |
| 480 | if (statusCode === 304) { |
| 481 | deleteCachedValue(store, cacheKey) |
| 482 | } |
| 483 | } |
| 484 | |
| 485 | /** |
| 486 | * @param {import('../../types/cache-interceptor.d.ts').default.CacheOptions['type']} cacheType |
no test coverage detected