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.39 to 0.0.40

1

container.d.ts

@@ -14,2 +14,3 @@ import { Class, Maybe } from 'yummies/utils/types';

private static lastTouchedContainer?;
get root(): Container;
constructor(config?: ContainerConfig & {

@@ -16,0 +17,0 @@ parent?: Container;

@@ -11,2 +11,9 @@ import { containerMark } from './constants.js';

static lastTouchedContainer;
get root() {
const parent = this.parent;
if (!parent) {
return this;
}
return parent.root;
}
constructor(config) {

@@ -44,3 +51,3 @@ this.parent = config?.parent;

// eslint-disable-next-line @typescript-eslint/no-use-before-define
targetContainer = container;
targetContainer = this.root;
break;

@@ -47,0 +54,0 @@ }

2

package.json
{
"name": "mobidic",
"version": "0.0.39",
"version": "0.0.40",
"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