(url: string)
| 358 | * @internal |
| 359 | */ |
| 360 | export function encodeRoutePath (url: string): string { |
| 361 | const parsed = parseURL(url) |
| 362 | return encodePath(decodePath(parsed.pathname)) + parsed.search + parsed.hash |
| 363 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…