@maverick-js/signals
Advanced tools
Comparing version 5.11.3 to 5.11.4
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
64642
1423