mol_wire_dom 0.0.1535 → 0.0.1537
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/node.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) {
|
@@ -1805,6 +1805,10 @@ var $;
|
|
1805
1805
|
this.emit();
|
1806
1806
|
return next;
|
1807
1807
|
}
|
1808
|
+
destructor() {
|
1809
|
+
super.destructor();
|
1810
|
+
this.cursor = $mol_wire_cursor.final;
|
1811
|
+
}
|
1808
1812
|
}
|
1809
1813
|
$.$mol_wire_task = $mol_wire_task;
|
1810
1814
|
})($ || ($ = {}));
|
package/node.test.js
CHANGED
@@ -439,7 +439,7 @@ var $;
|
|
439
439
|
this.data.length = this.sub_from;
|
440
440
|
this.cursor = this.pub_from;
|
441
441
|
this.track_cut();
|
442
|
-
this.cursor = $mol_wire_cursor.
|
442
|
+
this.cursor = $mol_wire_cursor.stale;
|
443
443
|
}
|
444
444
|
track_cut() {
|
445
445
|
if (this.cursor < this.pub_from) {
|
@@ -1796,6 +1796,10 @@ var $;
|
|
1796
1796
|
this.emit();
|
1797
1797
|
return next;
|
1798
1798
|
}
|
1799
|
+
destructor() {
|
1800
|
+
super.destructor();
|
1801
|
+
this.cursor = $mol_wire_cursor.final;
|
1802
|
+
}
|
1799
1803
|
}
|
1800
1804
|
$.$mol_wire_task = $mol_wire_task;
|
1801
1805
|
})($ || ($ = {}));
|