(_req: Request, _ctx: HandlerContext)
| 15 | ]; |
| 16 | |
| 17 | export const handler = (_req: Request, _ctx: HandlerContext): Response => { |
| 18 | const randomIndex = Math.floor(Math.random() * JOKES.length); |
| 19 | const body = JOKES[randomIndex]; |
| 20 | return new Response(body); |
| 21 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected