(pathValue, searchValue, hashValue)
| 14476 | } |
| 14477 | |
| 14478 | function normalizePath(pathValue, searchValue, hashValue) { |
| 14479 | var search = toKeyValue(searchValue), |
| 14480 | hash = hashValue ? '#' + encodeUriSegment(hashValue) : '', |
| 14481 | path = encodePath(pathValue); |
| 14482 | |
| 14483 | return path + (search ? '?' + search : '') + hash; |
| 14484 | } |
| 14485 | |
| 14486 | function parseAbsoluteUrl(absoluteUrl, locationObj) { |
| 14487 | var parsedUrl = urlResolve(absoluteUrl); |
no test coverage detected