Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-deep-linking

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-deep-linking - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

4

package.json
{
"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 };

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc