(response: Response)
| 56 | * with no content type. |
| 57 | */ |
| 58 | const fromWebResponse = (response: Response): HttpServerResponse.HttpServerResponse => |
| 59 | HttpServerResponse.raw(response, { |
| 60 | status: response.status, |
| 61 | statusText: response.statusText, |
| 62 | headers: response.headers, |
| 63 | }); |
| 64 | |
| 65 | /** |
| 66 | * The canonical CORS preflight `Response` (204) answered for an `OPTIONS` on |
no outgoing calls
no test coverage detected