mol_jsx_lib 0.0.161 → 0.0.164

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 CHANGED
@@ -1605,7 +1605,7 @@ var $;
1605
1605
  if (left instanceof RegExp)
1606
1606
  return left.source === right['source'] && left.flags === right['flags'];
1607
1607
  if (left instanceof Error)
1608
- return left.stack === right['stack'];
1608
+ return left.message === right['message'] && left.stack === right['stack'];
1609
1609
  let left_cache = $.$mol_compare_deep_cache.get(left);
1610
1610
  if (left_cache) {
1611
1611
  const right_cache = left_cache.get(right);