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

mobidic

Package Overview
Dependencies
Maintainers
0
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mobidic - npm Package Compare versions

Comparing version 0.0.10 to 0.0.11

20

container.js

@@ -148,9 +148,17 @@ /* eslint-disable no-prototype-builtins */

targetToDestroy.dependencies.clear();
targetToDestroy.children.forEach((child) => child.destroy());
if (targetToDestroy.parent) {
const thisIndexInParent = targetToDestroy.parent.children.indexOf(this);
if (thisIndexInParent !== -1) {
targetToDestroy.parent.children.splice(thisIndexInParent, 1);
while (targetToDestroy && targetToDestroy.dependencies.size === 0) {
targetToDestroy.children.forEach((child) => child.destroy());
if (targetToDestroy.parent) {
const thisIndexInParent = targetToDestroy.parent.children.indexOf(this);
if (thisIndexInParent !== -1) {
targetToDestroy.parent.children.splice(thisIndexInParent, 1);
}
if (targetToDestroy.parent !== rootContainer) {
targetToDestroy = targetToDestroy.parent;
}
delete targetToDestroy.parent;
}
delete targetToDestroy.parent;
else {
targetToDestroy = null;
}
}

@@ -157,0 +165,0 @@ }

{
"name": "mobidic",
"version": "0.0.10",
"version": "0.0.11",
"keywords": [],

@@ -5,0 +5,0 @@ "author": "js2me",

Sorry, the diff of this file is not supported yet

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