(url)
| 2140 | } |
| 2141 | |
| 2142 | function parseRouteUrl(url) { |
| 2143 | var strippedUrl = stripQueryAndHash(url); |
| 2144 | var parseOptions = {caseInsensitiveMatch: true, ignoreTrailingSlashes: true}; |
| 2145 | return routeToRegExp(strippedUrl, parseOptions); |
| 2146 | } |
| 2147 | } |
| 2148 | |
| 2149 | function assertArgDefined(args, index, name) { |
no test coverage detected