(pathname: string, search: string, hash: string)
| 239 | * @returns The constructed and decoded URL string. |
| 240 | */ |
| 241 | export function constructUrl(pathname: string, search: string, hash: string): string { |
| 242 | return decodeURIComponent([stripTrailingSlash(pathname), search, hash].join('')); |
| 243 | } |
nothing calls this directly
no test coverage detected