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/node.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])
|
|
@@ -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
|
|
794
|
+
return left.source === right.source && left.flags === right.flags;
|
|
793
795
|
if (left instanceof Error)
|
|
794
|
-
return left.message === right
|
|
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
|
-
|
|
1434
|
+
const getter = (() => value);
|
|
1433
1435
|
getter['()'] = value;
|
|
1434
1436
|
getter[Symbol.toStringTag] = value;
|
|
1435
1437
|
return getter;
|