(contentType?: string)
| 19 | } |
| 20 | |
| 21 | export function isPDF(contentType?: string): boolean { |
| 22 | return contentType?.toLowerCase().includes('application/pdf') || false; |
| 23 | } |
| 24 | |
| 25 | export function isText(contentType?: string): boolean { |
| 26 | return contentType?.toLowerCase().includes('text/plain') || false; |
no outgoing calls
no test coverage detected