mol_plot_all 1.2.1044 → 1.2.1045
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 +92 -92
- package/node.deps.json +1 -1
- package/node.js +2 -0
- package/node.js.map +1 -1
- package/node.mjs +2 -0
- package/node.test.js +2 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +92 -92
- package/web.deps.json +1 -1
- package/web.js +2 -0
- package/web.js.map +1 -1
- package/web.mjs +2 -0
package/node.mjs
CHANGED
|
@@ -715,6 +715,7 @@ var $;
|
|
|
715
715
|
plan() {
|
|
716
716
|
$mol_wire_fiber.planning.add(this);
|
|
717
717
|
$mol_wire_fiber.plan();
|
|
718
|
+
return this;
|
|
718
719
|
}
|
|
719
720
|
reap() {
|
|
720
721
|
$mol_wire_fiber.reaping.add(this);
|
|
@@ -814,6 +815,7 @@ var $;
|
|
|
814
815
|
}
|
|
815
816
|
this.track_off(bu);
|
|
816
817
|
this.put(result);
|
|
818
|
+
return this;
|
|
817
819
|
}
|
|
818
820
|
refresh() {
|
|
819
821
|
this.cursor = $mol_wire_cursor.stale;
|
package/node.test.js
CHANGED
|
@@ -706,6 +706,7 @@ var $;
|
|
|
706
706
|
plan() {
|
|
707
707
|
$mol_wire_fiber.planning.add(this);
|
|
708
708
|
$mol_wire_fiber.plan();
|
|
709
|
+
return this;
|
|
709
710
|
}
|
|
710
711
|
reap() {
|
|
711
712
|
$mol_wire_fiber.reaping.add(this);
|
|
@@ -805,6 +806,7 @@ var $;
|
|
|
805
806
|
}
|
|
806
807
|
this.track_off(bu);
|
|
807
808
|
this.put(result);
|
|
809
|
+
return this;
|
|
808
810
|
}
|
|
809
811
|
refresh() {
|
|
810
812
|
this.cursor = $mol_wire_cursor.stale;
|