(url: string, query: HttpUrlQueryItem[])
| 56 | } |
| 57 | |
| 58 | export function getDisplayUrl(url: string, query: HttpUrlQueryItem[]): string { |
| 59 | return query.length > 0 ? applyQueryToUrl(url, query) : url |
| 60 | } |
| 61 | |
| 62 | export function stripQueryFromUrl(url: string): string { |
| 63 | const parts = splitUrl(url) |
no test coverage detected