mol_plot_all 1.2.339 → 1.2.340
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.esm.js +1 -1
- package/node.esm.js.map +1 -1
- package/node.js +1 -1
- package/node.js.map +1 -1
- package/node.test.js +1 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/test.html +2 -2
- package/web.esm.js +1 -1
- package/web.esm.js.map +1 -1
- package/web.js +1 -1
- package/web.js.map +1 -1
package/node.js
CHANGED
|
@@ -1607,7 +1607,7 @@ var $;
|
|
|
1607
1607
|
if (left instanceof RegExp)
|
|
1608
1608
|
return left.source === right['source'] && left.flags === right['flags'];
|
|
1609
1609
|
if (left instanceof Error)
|
|
1610
|
-
return left.stack === right['stack'];
|
|
1610
|
+
return left.message === right['message'] && left.stack === right['stack'];
|
|
1611
1611
|
let left_cache = $.$mol_compare_deep_cache.get(left);
|
|
1612
1612
|
if (left_cache) {
|
|
1613
1613
|
const right_cache = left_cache.get(right);
|