mol_wire_lib 1.0.533 → 1.0.535

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
@@ -133,7 +133,7 @@ var $;
133
133
  "use strict";
134
134
  var $;
135
135
  (function ($) {
136
- $['devtoolsFormatters'] = $['devtoolsFormatters'] || [];
136
+ $['devtoolsFormatters'] ||= [];
137
137
  function $mol_dev_format_register(config) {
138
138
  $['devtoolsFormatters'].push(config);
139
139
  }
@@ -488,6 +488,7 @@ var $;
488
488
  (function ($) {
489
489
  class $mol_object2 {
490
490
  static $ = $;
491
+ [Symbol.toStringTag];
491
492
  [$mol_ambient_ref] = null;
492
493
  get $() {
493
494
  if (this[$mol_ambient_ref])
@@ -605,6 +606,7 @@ var $;
605
606
  }
606
607
  }
607
608
  }
609
+ [Symbol.toStringTag];
608
610
  cache = undefined;
609
611
  get args() {
610
612
  return this.data.slice(0, this.pub_from);
@@ -789,9 +791,9 @@ var $;
789
791
  if (left instanceof Date)
790
792
  return Object.is(left.valueOf(), right['valueOf']());
791
793
  if (left instanceof RegExp)
792
- return left.source === right['source'] && left.flags === right['flags'];
794
+ return left.source === right.source && left.flags === right.flags;
793
795
  if (left instanceof Error)
794
- return left.message === right['message'] && left.stack === right['stack'];
796
+ return left.message === right.message && left.stack === right.stack;
795
797
  let left_cache = $.$mol_compare_deep_cache.get(left);
796
798
  if (left_cache) {
797
799
  const right_cache = left_cache.get(right);
@@ -1429,7 +1431,7 @@ var $;
1429
1431
  var $;
1430
1432
  (function ($) {
1431
1433
  function $mol_const(value) {
1432
- var getter = (() => value);
1434
+ const getter = (() => value);
1433
1435
  getter['()'] = value;
1434
1436
  getter[Symbol.toStringTag] = value;
1435
1437
  return getter;