()
| 60 | * Get statistics about the active ZIP archive. |
| 61 | */ |
| 62 | export function getActiveZipStats(): { fileSize: number; imageCount: number } { |
| 63 | return { |
| 64 | fileSize: activeZipFileSize, |
| 65 | imageCount: activeZipImageCount, |
| 66 | }; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Find an entry in a ZIP index by image name. |
no outgoing calls
no test coverage detected