mol_wire_lib 1.0.236 → 1.0.237
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/node.deps.json +1 -1
- package/node.esm.js +6 -1
- package/node.esm.js.map +1 -1
- package/node.js +6 -1
- package/node.js.map +1 -1
- package/node.test.js +6 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.esm.js +6 -1
- package/web.esm.js.map +1 -1
- package/web.js +6 -1
- package/web.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -1125,10 +1125,15 @@ var $;
|
|
|
1125
1125
|
var $;
|
|
1126
1126
|
(function ($) {
|
|
1127
1127
|
function $mol_wire_solid() {
|
|
1128
|
-
$mol_wire_auto()
|
|
1128
|
+
const current = $mol_wire_auto();
|
|
1129
|
+
if (current.reap !== nothing) {
|
|
1130
|
+
current?.sub_on(sub, sub.data.length);
|
|
1131
|
+
}
|
|
1132
|
+
current.reap = nothing;
|
|
1129
1133
|
}
|
|
1130
1134
|
$.$mol_wire_solid = $mol_wire_solid;
|
|
1131
1135
|
const nothing = () => { };
|
|
1136
|
+
const sub = new $mol_wire_pub_sub;
|
|
1132
1137
|
})($ || ($ = {}));
|
|
1133
1138
|
//mol/wire/solid/solid.ts
|
|
1134
1139
|
;
|