* Wrapper around the `Response` constructor.
(body: any, init?: ResponseInit)
| 45 | * Wrapper around the `Response` constructor. |
| 46 | */ |
| 47 | newResponse(body: any, init?: ResponseInit) { |
| 48 | return new Response(body, init); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Wrapper around the `Headers` constructor. |
no outgoing calls
no test coverage detected