(contentType: string)
| 250 | } |
| 251 | |
| 252 | function isJsonContentType(contentType: string): boolean { |
| 253 | return ( |
| 254 | contentType.includes('application/json') || contentType.includes('+json') |
| 255 | ) |
| 256 | } |
| 257 | |
| 258 | function isMarkdownContentType(contentType: string): boolean { |
| 259 | return contentType.includes('text/markdown') |
no outgoing calls
no test coverage detected