(value)
| 50878 | POST: "POST", |
| 50879 | put: "PUT", |
| 50880 | PUT: "PUT" |
| 50881 | }; |
| 50882 | Object.setPrototypeOf(normalizeMethodRecord, null); |
| 50883 | function normalizeMethod(method) { |
| 50884 | return normalizeMethodRecord[method.toLowerCase()] ?? method; |
| 50885 | } |
| 50886 | function serializeJavascriptValueToJSONString(value) { |
| 50887 | const result = JSON.stringify(value); |
| 50888 | if (result === void 0) { |
| 50889 | throw new TypeError("Value is not JSON serializable"); |
| 50890 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…