(data: unknown, status = 200)
| 193 | // ── Helpers ───────────────────────────────────────────────────────────────── |
| 194 | |
| 195 | function json(data: unknown, status = 200): Response { |
| 196 | return new Response(JSON.stringify(data, null, 2), { status, headers: CORS_HEADERS }); |
| 197 | } |
| 198 | |
| 199 | async function computeInputHash(text: string): Promise<string> { |
| 200 | const encoder = new TextEncoder(); |
no outgoing calls
no test coverage detected
searching dependent graphs…