You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- paramset uses prototypal inheritance, but ordering was not retained correctly. Add a $$parent property so we can enumerate the properties of the prototypal chain appropriately.
Copy file name to clipboardExpand all lines: src/urlMatcherFactory.js
+21-5
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,8 @@ var $$UMFP; // reference to $UrlMatcherFactoryProvider
42
42
*
43
43
* @param {string} pattern The pattern to compile into a matcher.
44
44
* @param {Object} config A configuration object hash:
45
+
* @param {Object=} parentMatcher Used to concatenate the pattern/config onto
46
+
* an existing UrlMatcher
45
47
*
46
48
* * `caseInsensitive` - `true` if URL matching should be case insensitive, otherwise `false`, the default value (for backward compatibility) is `false`.
47
49
* * `strict` - `false` if matching against a URL with a trailing slash should be treated as equivalent to a URL without a trailing slash, the default value is `true`.
@@ -61,7 +63,7 @@ var $$UMFP; // reference to $UrlMatcherFactoryProvider
0 commit comments