(value: unknown)
| 470 | } |
| 471 | |
| 472 | function stringFormValue(value: unknown): string { |
| 473 | return typeof value === "string" ? value.trim() : ""; |
| 474 | } |
| 475 | |
| 476 | function cookieValue(header: string, name: string): string | null { |
| 477 | for (const chunk of header.split(";")) { |
no outgoing calls
no test coverage detected