mol_plot_all 1.2.553 → 1.2.555

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.mjs CHANGED
@@ -160,6 +160,7 @@ var $;
160
160
  (function ($) {
161
161
  class $mol_object2 {
162
162
  static $ = $;
163
+ [Symbol.toStringTag];
163
164
  [$mol_ambient_ref] = null;
164
165
  get $() {
165
166
  if (this[$mol_ambient_ref])
@@ -328,7 +329,7 @@ var $;
328
329
  "use strict";
329
330
  var $;
330
331
  (function ($) {
331
- $['devtoolsFormatters'] = $['devtoolsFormatters'] || [];
332
+ $['devtoolsFormatters'] ||= [];
332
333
  function $mol_dev_format_register(config) {
333
334
  $['devtoolsFormatters'].push(config);
334
335
  }
@@ -640,6 +641,7 @@ var $;
640
641
  }
641
642
  }
642
643
  }
644
+ [Symbol.toStringTag];
643
645
  cache = undefined;
644
646
  get args() {
645
647
  return this.data.slice(0, this.pub_from);
@@ -908,9 +910,9 @@ var $;
908
910
  if (left instanceof Date)
909
911
  return Object.is(left.valueOf(), right['valueOf']());
910
912
  if (left instanceof RegExp)
911
- return left.source === right['source'] && left.flags === right['flags'];
913
+ return left.source === right.source && left.flags === right.flags;
912
914
  if (left instanceof Error)
913
- return left.message === right['message'] && left.stack === right['stack'];
915
+ return left.message === right.message && left.stack === right.stack;
914
916
  let left_cache = $.$mol_compare_deep_cache.get(left);
915
917
  if (left_cache) {
916
918
  const right_cache = left_cache.get(right);
@@ -2129,7 +2131,7 @@ var $;
2129
2131
  var $;
2130
2132
  (function ($) {
2131
2133
  function $mol_const(value) {
2132
- var getter = (() => value);
2134
+ const getter = (() => value);
2133
2135
  getter['()'] = value;
2134
2136
  getter[Symbol.toStringTag] = value;
2135
2137
  return getter;