(contentType?: string)
| 23 | } |
| 24 | |
| 25 | export function isText(contentType?: string): boolean { |
| 26 | return contentType?.toLowerCase().includes('text/plain') || false; |
| 27 | } |
| 28 | |
| 29 | export function isFormUrlEncoded(contentType?: string): boolean { |
| 30 | return contentType?.toLowerCase().includes('application/x-www-form-urlencoded') || false; |
no outgoing calls
no test coverage detected