(ct: string | null | undefined)
| 202 | normalizeContentType(ct) === "application/x-www-form-urlencoded"; |
| 203 | |
| 204 | const isMultipartFormData = (ct: string | null | undefined): boolean => |
| 205 | normalizeContentType(ct).startsWith("multipart/form-data"); |
| 206 | |
| 207 | const isXmlContentType = (ct: string | null | undefined): boolean => { |
| 208 | const normalized = normalizeContentType(ct); |
no test coverage detected