mol_data_all 1.1.441 → 1.1.442
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.test.js +1 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/test.html +2 -2
- package/web.test.js +1 -1
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -1126,7 +1126,7 @@ var $;
|
|
|
1126
1126
|
if (left instanceof RegExp)
|
|
1127
1127
|
return left.source === right['source'] && left.flags === right['flags'];
|
|
1128
1128
|
if (left instanceof Error)
|
|
1129
|
-
return left.stack === right['stack'];
|
|
1129
|
+
return left.message === right['message'] && left.stack === right['stack'];
|
|
1130
1130
|
let left_cache = $.$mol_compare_deep_cache.get(left);
|
|
1131
1131
|
if (left_cache) {
|
|
1132
1132
|
const right_cache = left_cache.get(right);
|