mol_key 0.0.1377 → 0.0.1378
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.test.js +5 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
package/node.test.js
CHANGED
|
@@ -2038,7 +2038,7 @@ var $;
|
|
|
2038
2038
|
this.data.length = this.sub_from;
|
|
2039
2039
|
this.cursor = this.pub_from;
|
|
2040
2040
|
this.track_cut();
|
|
2041
|
-
this.cursor = $mol_wire_cursor.
|
|
2041
|
+
this.cursor = $mol_wire_cursor.stale;
|
|
2042
2042
|
}
|
|
2043
2043
|
track_cut() {
|
|
2044
2044
|
if (this.cursor < this.pub_from) {
|
|
@@ -2630,6 +2630,10 @@ var $;
|
|
|
2630
2630
|
this.emit();
|
|
2631
2631
|
return next;
|
|
2632
2632
|
}
|
|
2633
|
+
destructor() {
|
|
2634
|
+
super.destructor();
|
|
2635
|
+
this.cursor = $mol_wire_cursor.final;
|
|
2636
|
+
}
|
|
2633
2637
|
}
|
|
2634
2638
|
$.$mol_wire_task = $mol_wire_task;
|
|
2635
2639
|
})($ || ($ = {}));
|