(mime: string)
| 5 | } |
| 6 | |
| 7 | export function isMedia(mime: string) { |
| 8 | return mime.startsWith("image/") || isPdfAttachment(mime) |
| 9 | } |
| 10 | |
| 11 | export function isImageAttachment(mime: string) { |
| 12 | return mime.startsWith("image/") && mime !== "image/svg+xml" && mime !== "image/vnd.fastbidsheet" |
no test coverage detected