(ct: string | null | undefined)
| 195 | normalizeContentType(ct) === "application/x-www-form-urlencoded"; |
| 196 | |
| 197 | const isMultipartFormData = (ct: string | null | undefined): boolean => |
| 198 | normalizeContentType(ct).startsWith("multipart/form-data"); |
| 199 | |
| 200 | const isXmlContentType = (ct: string | null | undefined): boolean => { |
| 201 | const normalized = normalizeContentType(ct); |
no test coverage detected