mol_wire_lib 1.0.1553 → 1.0.1555
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.d.ts +1 -0
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +5 -1
- package/node.js.map +1 -1
- package/node.mjs +5 -1
- package/node.test.js +5 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +1 -0
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.js +5 -1
- package/web.js.map +1 -1
- package/web.mjs +5 -1
package/web.mjs
CHANGED
|
@@ -448,7 +448,7 @@ var $;
|
|
|
448
448
|
this.data.length = this.sub_from;
|
|
449
449
|
this.cursor = this.pub_from;
|
|
450
450
|
this.track_cut();
|
|
451
|
-
this.cursor = $mol_wire_cursor.
|
|
451
|
+
this.cursor = $mol_wire_cursor.stale;
|
|
452
452
|
}
|
|
453
453
|
track_cut() {
|
|
454
454
|
if (this.cursor < this.pub_from) {
|
|
@@ -1246,6 +1246,10 @@ var $;
|
|
|
1246
1246
|
this.emit();
|
|
1247
1247
|
return next;
|
|
1248
1248
|
}
|
|
1249
|
+
destructor() {
|
|
1250
|
+
super.destructor();
|
|
1251
|
+
this.cursor = $mol_wire_cursor.final;
|
|
1252
|
+
}
|
|
1249
1253
|
}
|
|
1250
1254
|
$.$mol_wire_task = $mol_wire_task;
|
|
1251
1255
|
})($ || ($ = {}));
|