(input: string | GlobalRequest | URL, init?: RequestInit)
| 14 | } |
| 15 | |
| 16 | export function fetch(input: string | GlobalRequest | URL, init?: RequestInit): Promise<Response> { |
| 17 | if (net) { |
| 18 | return net.fetch(input.toString(), init); |
| 19 | } else { |
| 20 | return globalThis.fetch(input, init); |
| 21 | } |
| 22 | } |
no outgoing calls
no test coverage detected