(value: string)
| 184 | // --- The full OIDC round-trip against the emulated IdP ----------------------- |
| 185 | |
| 186 | const decodeHtml = (value: string): string => |
| 187 | value |
| 188 | .replaceAll("&", "&") |
| 189 | .replaceAll(""", '"') |
| 190 | .replaceAll("'", "'") |
| 191 | .replaceAll("<", "<") |
| 192 | .replaceAll(">", ">"); |
| 193 | |
| 194 | const formFields = (form: string): Record<string, string> => { |
| 195 | const fields: Record<string, string> = {}; |
no outgoing calls
no test coverage detected