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.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/node.js
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']
|
|
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
|
|
913
|
+
return left.source === right.source && left.flags === right.flags;
|
|
912
914
|
if (left instanceof Error)
|
|
913
|
-
return left.message === right
|
|
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
|
-
|
|
2134
|
+
const getter = (() => value);
|
|
2133
2135
|
getter['()'] = value;
|
|
2134
2136
|
getter[Symbol.toStringTag] = value;
|
|
2135
2137
|
return getter;
|