(body: unknown, init?: ResponseInit)
| 30 | const issuedAccessTokens = new Set<string>(); |
| 31 | |
| 32 | const json = (body: unknown, init?: ResponseInit) => |
| 33 | new Response(JSON.stringify(body), { |
| 34 | ...init, |
| 35 | headers: { "content-type": "application/json", ...init?.headers }, |
| 36 | }); |
| 37 | |
| 38 | const text = (body: string, init?: ResponseInit) => |
| 39 | new Response(body, { |
no outgoing calls
no test coverage detected