Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@maverick-js/signals

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@maverick-js/signals - npm Package Compare versions

Comparing version 5.11.3 to 5.11.4

6

dist/dev/core.js

@@ -96,7 +96,9 @@ import { SCOPE } from './symbols.js';

return;
let head = self ? this._prevSibling || this[SCOPE] : this, current = this._nextSibling;
let head = self ? this._prevSibling || this[SCOPE] : this, current = this._nextSibling, next = null;
while (current && current[SCOPE] === this) {
dispose.call(current, true);
disposeNode(current);
current = current._nextSibling;
next = current._nextSibling;
current._nextSibling = null;
current = next;
}

@@ -103,0 +105,0 @@ if (self)

@@ -96,7 +96,9 @@ import { SCOPE } from './symbols.js';

return;
let head = self ? this.$ps || this[SCOPE] : this, current = this.$ns;
let head = self ? this.$ps || this[SCOPE] : this, current = this.$ns, next = null;
while (current && current[SCOPE] === this) {
dispose.call(current, true);
disposeNode(current);
current = current.$ns;
next = current.$ns;
current.$ns = null;
current = next;
}

@@ -103,0 +105,0 @@ if (self)

@@ -5,3 +5,3 @@ {

"license": "MIT",
"version": "5.11.3",
"version": "5.11.4",
"type": "module",

@@ -8,0 +8,0 @@ "types": "dist/types/index.d.ts",

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