(ct: string | null | undefined)
| 236 | normalizeContentType(ct) === "application/x-www-form-urlencoded"; |
| 237 | |
| 238 | const isMultipartFormData = (ct: string | null | undefined): boolean => |
| 239 | normalizeContentType(ct).startsWith("multipart/form-data"); |
| 240 | |
| 241 | const isXmlContentType = (ct: string | null | undefined): boolean => { |
| 242 | const normalized = normalizeContentType(ct); |
no test coverage detected