(params: Record<string, string>)
| 15 | * @internal |
| 16 | */ |
| 17 | export function decodeParams(params: Record<string, string>): Record<string, string> { |
| 18 | return Object.fromEntries(Object.entries(params).map(([key, value]) => [key, tryDecodeURIComponent(value)])) |
| 19 | } |
no test coverage detected