mol_regexp 0.0.1653 → 0.0.1655
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
|
@@ -1288,7 +1288,7 @@ var $;
|
|
|
1288
1288
|
this.data.length = this.sub_from;
|
|
1289
1289
|
this.cursor = this.pub_from;
|
|
1290
1290
|
this.track_cut();
|
|
1291
|
-
this.cursor = $mol_wire_cursor.
|
|
1291
|
+
this.cursor = $mol_wire_cursor.stale;
|
|
1292
1292
|
}
|
|
1293
1293
|
track_cut() {
|
|
1294
1294
|
if (this.cursor < this.pub_from) {
|
|
@@ -1989,6 +1989,10 @@ var $;
|
|
|
1989
1989
|
this.emit();
|
|
1990
1990
|
return next;
|
|
1991
1991
|
}
|
|
1992
|
+
destructor() {
|
|
1993
|
+
super.destructor();
|
|
1994
|
+
this.cursor = $mol_wire_cursor.final;
|
|
1995
|
+
}
|
|
1992
1996
|
}
|
|
1993
1997
|
$.$mol_wire_task = $mol_wire_task;
|
|
1994
1998
|
})($ || ($ = {}));
|