mol_plot_all 1.2.553 → 1.2.554
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 +582 -18
- 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 +403 -14
- package/web.test.js.map +1 -1
package/web.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])
|
|
@@ -313,7 +314,7 @@ var $;
|
|
|
313
314
|
"use strict";
|
|
314
315
|
var $;
|
|
315
316
|
(function ($) {
|
|
316
|
-
$['devtoolsFormatters']
|
|
317
|
+
$['devtoolsFormatters'] ||= [];
|
|
317
318
|
function $mol_dev_format_register(config) {
|
|
318
319
|
$['devtoolsFormatters'].push(config);
|
|
319
320
|
}
|
|
@@ -631,6 +632,7 @@ var $;
|
|
|
631
632
|
}
|
|
632
633
|
}
|
|
633
634
|
}
|
|
635
|
+
[Symbol.toStringTag];
|
|
634
636
|
cache = undefined;
|
|
635
637
|
get args() {
|
|
636
638
|
return this.data.slice(0, this.pub_from);
|
|
@@ -899,9 +901,9 @@ var $;
|
|
|
899
901
|
if (left instanceof Date)
|
|
900
902
|
return Object.is(left.valueOf(), right['valueOf']());
|
|
901
903
|
if (left instanceof RegExp)
|
|
902
|
-
return left.source === right
|
|
904
|
+
return left.source === right.source && left.flags === right.flags;
|
|
903
905
|
if (left instanceof Error)
|
|
904
|
-
return left.message === right
|
|
906
|
+
return left.message === right.message && left.stack === right.stack;
|
|
905
907
|
let left_cache = $.$mol_compare_deep_cache.get(left);
|
|
906
908
|
if (left_cache) {
|
|
907
909
|
const right_cache = left_cache.get(right);
|
|
@@ -1562,7 +1564,7 @@ var $;
|
|
|
1562
1564
|
var $;
|
|
1563
1565
|
(function ($) {
|
|
1564
1566
|
function $mol_const(value) {
|
|
1565
|
-
|
|
1567
|
+
const getter = (() => value);
|
|
1566
1568
|
getter['()'] = value;
|
|
1567
1569
|
getter[Symbol.toStringTag] = value;
|
|
1568
1570
|
return getter;
|