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.d.ts +5 -3
- package/node.deps.json +1 -1
- package/node.js +6 -4
- package/node.js.map +1 -1
- package/node.mjs +6 -4
- package/node.mjs.map +1 -1
- package/node.test.js +8 -6
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +4 -2
- package/web.deps.json +1 -1
- package/web.js +6 -4
- package/web.js.map +1 -1
- package/web.mjs +6 -4
- package/web.mjs.map +1 -1
- package/web.test.js +2 -2
- package/web.test.js.map +1 -1
package/web.mjs
CHANGED
|
@@ -133,7 +133,7 @@ var $;
|
|
|
133
133
|
"use strict";
|
|
134
134
|
var $;
|
|
135
135
|
(function ($) {
|
|
136
|
-
$['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])
|
|
@@ -611,6 +612,7 @@ var $;
|
|
|
611
612
|
}
|
|
612
613
|
}
|
|
613
614
|
}
|
|
615
|
+
[Symbol.toStringTag];
|
|
614
616
|
cache = undefined;
|
|
615
617
|
get args() {
|
|
616
618
|
return this.data.slice(0, this.pub_from);
|
|
@@ -795,9 +797,9 @@ var $;
|
|
|
795
797
|
if (left instanceof Date)
|
|
796
798
|
return Object.is(left.valueOf(), right['valueOf']());
|
|
797
799
|
if (left instanceof RegExp)
|
|
798
|
-
return left.source === right
|
|
800
|
+
return left.source === right.source && left.flags === right.flags;
|
|
799
801
|
if (left instanceof Error)
|
|
800
|
-
return left.message === right
|
|
802
|
+
return left.message === right.message && left.stack === right.stack;
|
|
801
803
|
let left_cache = $.$mol_compare_deep_cache.get(left);
|
|
802
804
|
if (left_cache) {
|
|
803
805
|
const right_cache = left_cache.get(right);
|
|
@@ -1435,7 +1437,7 @@ var $;
|
|
|
1435
1437
|
var $;
|
|
1436
1438
|
(function ($) {
|
|
1437
1439
|
function $mol_const(value) {
|
|
1438
|
-
|
|
1440
|
+
const getter = (() => value);
|
|
1439
1441
|
getter['()'] = value;
|
|
1440
1442
|
getter[Symbol.toStringTag] = value;
|
|
1441
1443
|
return getter;
|