(ct: string | null | undefined)
| 233 | }; |
| 234 | |
| 235 | const isFormUrlEncoded = (ct: string | null | undefined): boolean => |
| 236 | normalizeContentType(ct) === "application/x-www-form-urlencoded"; |
| 237 | |
| 238 | const isMultipartFormData = (ct: string | null | undefined): boolean => |
| 239 | normalizeContentType(ct).startsWith("multipart/form-data"); |
no test coverage detected