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

@startselect/vue-youtube

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@startselect/vue-youtube - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

2

package.json
{
"name": "@startselect/vue-youtube",
"version": "0.0.5",
"version": "0.0.6",
"description": "Youtube component for vue",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -49,3 +49,3 @@ module.exports = {

setId() {
const params = this.$helpers.getQueryParameters(this.url);
const params = this.getParameters(this.url);

@@ -62,2 +62,8 @@ Object.keys(params).forEach((key) => {

},
getParameters(string) {
return (!string && {}) || string.replace(/(^\?)/, '').split("&").map(function (n) {
return n = n.split("="), this[n[0]] = n[1], this
}.bind({}))[0];
},
},

@@ -74,2 +80,2 @@

}
}
};
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