(input: RequestInfo | URL | string, init?: RequestInit)
| 127 | }; |
| 128 | |
| 129 | const normalizeHttpMethod = (input: RequestInfo | URL | string, init?: RequestInit): string => { |
| 130 | if (typeof input === "string" || input instanceof URL) { |
| 131 | return (init?.method || "GET").toUpperCase(); |
| 132 | } |
| 133 | |
| 134 | return (input.method ?? init?.method ?? "GET").toUpperCase(); |
| 135 | }; |
| 136 | |
| 137 | const fetchHttpHandlerStorage = new AsyncLocalStorage<Array<HttpHandler>>(); |
| 138 |
no outgoing calls
no test coverage detected
searching dependent graphs…