thunderous 2.0.5 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
@@ -751,7 +751,7 @@ You must set an initial value before calling a property signal's getter.
|
|
751
751
|
}
|
752
752
|
constructor() {
|
753
753
|
super();
|
754
|
-
if (Object.prototype.hasOwnProperty.call(this, "__customCallbackFns")) {
|
754
|
+
if (!Object.prototype.hasOwnProperty.call(this, "__customCallbackFns")) {
|
755
755
|
this.__customCallbackFns = /* @__PURE__ */ new Map();
|
756
756
|
}
|
757
757
|
for (const [attrName, attr] of this.#attributesAsPropertiesMap) {
|
package/dist/index.js
CHANGED
@@ -716,7 +716,7 @@ You must set an initial value before calling a property signal's getter.
|
|
716
716
|
}
|
717
717
|
constructor() {
|
718
718
|
super();
|
719
|
-
if (Object.prototype.hasOwnProperty.call(this, "__customCallbackFns")) {
|
719
|
+
if (!Object.prototype.hasOwnProperty.call(this, "__customCallbackFns")) {
|
720
720
|
this.__customCallbackFns = /* @__PURE__ */ new Map();
|
721
721
|
}
|
722
722
|
for (const [attrName, attr] of this.#attributesAsPropertiesMap) {
|