(contentType?: string)
| 11 | } |
| 12 | |
| 13 | export function isGraphQL(contentType?: string): boolean { |
| 14 | return contentType?.toLowerCase().includes('application/graphql') || false; |
| 15 | } |
| 16 | |
| 17 | export function isCSV(contentType?: string): boolean { |
| 18 | return contentType?.toLowerCase().includes('text/csv') || false; |
no outgoing calls
no test coverage detected