mol_plot_all 1.2.297 → 1.2.300

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.js CHANGED
@@ -1709,7 +1709,8 @@ var $;
1709
1709
  class $mol_wire_task extends $mol_wire_fiber {
1710
1710
  static getter(task) {
1711
1711
  return function $mol_wire_task_get(host, args) {
1712
- const existen = $mol_wire_auto()?.track_next();
1712
+ const sub = $mol_wire_auto();
1713
+ const existen = sub?.track_next();
1713
1714
  reuse: if (existen) {
1714
1715
  if (!(existen instanceof $mol_wire_task))
1715
1716
  break reuse;
@@ -2944,7 +2945,7 @@ var $;
2944
2945
  class $mol_vector_range extends $mol_vector {
2945
2946
  0;
2946
2947
  1;
2947
- constructor(min, max) {
2948
+ constructor(min, max = min) {
2948
2949
  super(min, max);
2949
2950
  this[0] = min;
2950
2951
  this[1] = max;