Comparing version 20.6.1 to 20.6.2
# CHANGELOG | ||
## 20.6.2 | ||
Allow `#` characgter in route params. | ||
## 20.6.1 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "bobril", | ||
"version": "20.6.1", | ||
"version": "20.6.2", | ||
"description": "Component Oriented MVC Framework with virtual DOM and CSS", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -169,3 +169,3 @@ import { | ||
paramNames.push(paramName); | ||
return (leadingSlash ? "(?:/([^/?#]+))" : "([^/?#]+)") + optionalParamChar; | ||
return (leadingSlash ? "(?:/([^/?]+))" : "([^/?]+)") + optionalParamChar; | ||
} else if (match === "*") { | ||
@@ -172,0 +172,0 @@ paramNames.push("splat"); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
392487