New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@folklore/hooks

Package Overview
Dependencies
Maintainers
0
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@folklore/hooks - npm Package Compare versions

Comparing version 0.0.44 to 0.0.45

11

dist/cjs.js

@@ -143,4 +143,11 @@ 'use strict';

}
const match = url.match(/\/video\/([^/?]+)/);
return match !== null ? match[1] : null;
let match = url.match(/\/video\/([^/?]+)/);
if (match !== null) {
return match[1];
}
match = url.match(/\/video=([^/?&]+)/);
if (match !== null) {
return match[1];
}
return null;
}

@@ -147,0 +154,0 @@ } = params;

@@ -132,4 +132,11 @@ import raf from 'raf';

}
const match = url.match(/\/video\/([^/?]+)/);
return match !== null ? match[1] : null;
let match = url.match(/\/video\/([^/?]+)/);
if (match !== null) {
return match[1];
}
match = url.match(/\/video=([^/?&]+)/);
if (match !== null) {
return match[1];
}
return null;
}

@@ -136,0 +143,0 @@ } = params;

4

package.json
{
"name": "@folklore/hooks",
"version": "0.0.44",
"version": "0.0.45",
"description": "React hooks",

@@ -52,3 +52,3 @@ "keywords": [

},
"gitHead": "d17ece8ec14646ba798b01cc8e022d4b8f6bc9f1",
"gitHead": "067a9d84a1800001fc44d945bc8858a8b0dd5f75",
"dependencies": {

@@ -55,0 +55,0 @@ "@folklore/events": "^0.0.5",

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