(mimeType: string)
| 112 | ) |
| 113 | |
| 114 | export function isImageFileType(mimeType: string): boolean { |
| 115 | return IMAGE_MIME_TYPES.has(mimeType.toLowerCase()) |
| 116 | } |
| 117 | |
| 118 | /** |
| 119 | * Check if a MIME type is an audio type |
no outgoing calls
no test coverage detected