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

mburger-webcomponent

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

mburger-webcomponent - npm Package Compare versions

Comparing version 3.1.2 to 3.1.3

3

dist/mburger/js/index.js

@@ -47,3 +47,4 @@ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {

/** Node for the new menu. */
const menuNode = document.querySelector(`#mm-${newValue}, #${newValue}`);
const menuNode = document.querySelector(`#mm-${newValue}`) ||
document.querySelector(`#${newValue}`);
if (!menuNode) {

@@ -50,0 +51,0 @@ return;

{
"name": "mburger-webcomponent",
"version": "3.1.2",
"version": "3.1.3",
"main": "dist/mburger/index.js",

@@ -5,0 +5,0 @@ "module": "dist/mburger/index.js",

@@ -47,3 +47,6 @@ const on = (el, ev, cb) => {

/** Node for the new menu. */
const menuNode: HTMLElement = document.querySelector(`#mm-${newValue}, #${newValue}`);
const menuNode: HTMLElement =
document.querySelector(`#mm-${newValue}`) ||
document.querySelector(`#${newValue}`);
if (!menuNode) {

@@ -50,0 +53,0 @@ return;

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