(value)
| 1 | export function encodePathSegment(value) { |
| 2 | return encodeURIComponent(String(value ?? "")); |
| 3 | } |
| 4 | |
| 5 | export function decodePathParam(value) { |
| 6 | // React Router decodes path params once before loaders/components receive them. |
no outgoing calls
no test coverage detected