(mimeType: string)
| 119 | * Check if a MIME type is an audio type |
| 120 | */ |
| 121 | export function isAudioFileType(mimeType: string): boolean { |
| 122 | return getContentType(mimeType) === 'audio' |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * Check if a MIME type is a video type |
no test coverage detected