(pathValue, searchValue, hashValue)
| 14411 | } |
| 14412 | |
| 14413 | function normalizePath(pathValue, searchValue, hashValue) { |
| 14414 | var search = toKeyValue(searchValue), |
| 14415 | hash = hashValue ? '#' + encodeUriSegment(hashValue) : '', |
| 14416 | path = encodePath(pathValue); |
| 14417 | |
| 14418 | return path + (search ? '?' + search : '') + hash; |
| 14419 | } |
| 14420 | |
| 14421 | function parseAbsoluteUrl(absoluteUrl, locationObj) { |
| 14422 | var parsedUrl = urlResolve(absoluteUrl); |
no test coverage detected