(mimeType: string)
| 126 | * Check if a MIME type is a video type |
| 127 | */ |
| 128 | export function isVideoFileType(mimeType: string): boolean { |
| 129 | return getContentType(mimeType) === 'video' |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * Check if a MIME type is an audio or video type |
no test coverage detected