(value)
| 3 | } |
| 4 | |
| 5 | export function decodePathParam(value) { |
| 6 | // React Router decodes path params once before loaders/components receive them. |
| 7 | return value; |
| 8 | } |
| 9 | |
| 10 | function hasUnsafeRedirectCharacter(path) { |
| 11 | return Array.from(path).some((char) => { |
no outgoing calls
no test coverage detected