* Wrapper around the `Request` constructor.
(input: string | Request, init?: RequestInit)
| 38 | * Wrapper around the `Request` constructor. |
| 39 | */ |
| 40 | newRequest(input: string | Request, init?: RequestInit): Request { |
| 41 | return new Request(input, init); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Wrapper around the `Response` constructor. |
no outgoing calls
no test coverage detected