()
| 109 | * Clear the in-memory cache of stored image paths. |
| 110 | */ |
| 111 | export function clearStoredImagePaths(): void { |
| 112 | storedImagePaths.clear() |
| 113 | } |
| 114 | |
| 115 | function evictOldestIfAtCap(): void { |
| 116 | while (storedImagePaths.size >= MAX_STORED_IMAGE_PATHS) { |
no test coverage detected