react-native-deep-linking
Advanced tools
Comparing version 2.0.1 to 2.0.2
{ | ||
"name": "react-native-deep-linking", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "React Native URL routing library", | ||
@@ -47,3 +47,3 @@ "main": "index.js", | ||
"eslint-plugin-react": "^6.10.2", | ||
"husky": "^0.13.1", | ||
"husky": "^0.13.3", | ||
"jest": "^19.0.0", | ||
@@ -50,0 +50,0 @@ "semantic-release": "^6.3.2" |
@@ -48,3 +48,5 @@ const schemes = []; | ||
try { | ||
const match = expression.exec(path); | ||
const regex = expression; | ||
const match = regex.exec(path); | ||
regex.lastIndex = 0; | ||
if (match) { | ||
@@ -51,0 +53,0 @@ return { scheme, path, match }; |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
12549
90
0