(status: number, headers?: Record<string, string>)
| 668 | } |
| 669 | |
| 670 | function emptyResponse(status: number, headers?: Record<string, string>): Response { |
| 671 | return withCors(new Response(null, { headers, status })) |
| 672 | } |
| 673 | |
| 674 | function optionsResponse(): Response { |
| 675 | return emptyResponse(204, { |
no test coverage detected