(ct: string | null | undefined)
| 192 | }; |
| 193 | |
| 194 | const isFormUrlEncoded = (ct: string | null | undefined): boolean => |
| 195 | normalizeContentType(ct) === "application/x-www-form-urlencoded"; |
| 196 | |
| 197 | const isMultipartFormData = (ct: string | null | undefined): boolean => |
| 198 | normalizeContentType(ct).startsWith("multipart/form-data"); |
no test coverage detected