(path: string)
| 53 | } |
| 54 | |
| 55 | export function isArchiveImagePath(path: string): boolean { |
| 56 | const lower = path.toLowerCase(); |
| 57 | return IMAGE_EXTENSIONS.some(ext => lower.endsWith(ext)); |
| 58 | } |
| 59 | |
| 60 | export function isArchiveColmapPath(path: string): boolean { |
| 61 | const filename = path.split('/').pop()?.toLowerCase() ?? ''; |
no outgoing calls
no test coverage detected