(body: unknown, status: number)
| 112 | } |
| 113 | |
| 114 | function json(body: unknown, status: number): Response { |
| 115 | return new Response(JSON.stringify(body), { |
| 116 | status, |
| 117 | headers: { 'content-type': 'application/json' }, |
| 118 | }) |
| 119 | } |
no outgoing calls
no test coverage detected