(res: ServerResponse)
| 177 | } |
| 178 | |
| 179 | clearCookie(res: ServerResponse): void { |
| 180 | res.setHeader("Set-Cookie", [ |
| 181 | `${COOKIE_NAME}=; HttpOnly; SameSite=Lax; Path=/; Max-Age=0`, |
| 182 | ]); |
| 183 | } |
| 184 | |
| 185 | // ── Encryption ──────────────────────────────────────────────────────────── |
| 186 |
no outgoing calls
no test coverage detected