(type: string)
| 49 | } |
| 50 | |
| 51 | export function isArchiveMimeType(type: string): boolean { |
| 52 | return ARCHIVE_MIME_TYPES.has(type); |
| 53 | } |
| 54 | |
| 55 | export function isArchiveImagePath(path: string): boolean { |
| 56 | const lower = path.toLowerCase(); |
no outgoing calls
no test coverage detected