(path: string)
| 58 | } |
| 59 | |
| 60 | export function isArchiveColmapPath(path: string): boolean { |
| 61 | const filename = path.split('/').pop()?.toLowerCase() ?? ''; |
| 62 | return COLMAP_FILENAMES.has(filename); |
| 63 | } |
| 64 | |
| 65 | export function isArchivePlyPath(path: string): boolean { |
| 66 | return path.toLowerCase().endsWith('.ply'); |
no outgoing calls
no test coverage detected