(cacheKey: string)
| 25 | const failedImages = new Set<string>(); |
| 26 | |
| 27 | export function hasImageFailed(cacheKey: string): boolean { |
| 28 | return failedImages.has(cacheKey); |
| 29 | } |
| 30 | |
| 31 | export function getFailedImageCount(): number { |
| 32 | return failedImages.size; |
no outgoing calls
no test coverage detected