(method = "GET")
| 11 | Object.freeze(["PATCH", "POST", "PUT", "DELETE"]) |
| 12 | ); |
| 13 | export function isPayloadMethod(method = "GET"): boolean { |
| 14 | return payloadMethods.has(method.toUpperCase()); |
| 15 | } |
| 16 | |
| 17 | export function isJSONSerializable(value: any): boolean { |
| 18 | if (value === undefined) { |