mol_conform 0.0.80 → 0.0.82
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
|
@@ -1091,7 +1091,7 @@ var $;
|
|
|
1091
1091
|
this.data.length = this.sub_from;
|
|
1092
1092
|
this.cursor = this.pub_from;
|
|
1093
1093
|
this.track_cut();
|
|
1094
|
-
this.cursor = $mol_wire_cursor.
|
|
1094
|
+
this.cursor = $mol_wire_cursor.stale;
|
|
1095
1095
|
}
|
|
1096
1096
|
track_cut() {
|
|
1097
1097
|
if (this.cursor < this.pub_from) {
|
|
@@ -1792,6 +1792,10 @@ var $;
|
|
|
1792
1792
|
this.emit();
|
|
1793
1793
|
return next;
|
|
1794
1794
|
}
|
|
1795
|
+
destructor() {
|
|
1796
|
+
super.destructor();
|
|
1797
|
+
this.cursor = $mol_wire_cursor.final;
|
|
1798
|
+
}
|
|
1795
1799
|
}
|
|
1796
1800
|
$.$mol_wire_task = $mol_wire_task;
|
|
1797
1801
|
})($ || ($ = {}));
|