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.42 to 0.0.43

2

package.json
{
"name": "mobidic",
"version": "0.0.42",
"version": "0.0.43",
"keywords": [],

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

import { Class } from 'yummies/utils/types';
import { Container } from './container.js';
import { TagConfig, TagScope, TagStrategy } from './tag.types.js';
import { AnyTag, TagConfig, TagScope, TagStrategy } from './tag.types.js';
import { Destroyable } from './types.js';

@@ -24,2 +24,3 @@ export declare class Tag<TTarget, TArgs extends any[] = []> implements Destroyable, Disposable {

static search<TTarget = any>(tag: Tag<TTarget>): Tag<TTarget> | null;
static readonly tagsSet: WeakSet<AnyTag>;
static create<TTarget, TArgs extends any[] = []>(config: TagConfig<TTarget, TArgs>): Tag<TTarget, TArgs>;

@@ -26,0 +27,0 @@ }

@@ -17,2 +17,3 @@ import { tagMark } from './constants.js';

this.processConfig();
Tag.tagsSet.add(this);
}

@@ -107,2 +108,3 @@ createValue(args) {

}
static tagsSet = new WeakSet();
static create(config) {

@@ -109,0 +111,0 @@ return new this(config);

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