(response: Response)
| 80 | * with no content type. |
| 81 | */ |
| 82 | const fromWebResponse = (response: Response): HttpServerResponse.HttpServerResponse => |
| 83 | HttpServerResponse.raw(response, { |
| 84 | status: response.status, |
| 85 | statusText: response.statusText, |
| 86 | headers: response.headers, |
| 87 | }); |
| 88 | |
| 89 | /** |
| 90 | * The canonical CORS preflight `Response` (204) answered for an `OPTIONS` on |
no outgoing calls
no test coverage detected