mol_wire_lib 1.0.296 → 1.0.299

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
@@ -790,7 +790,7 @@ var $;
790
790
  if (left instanceof RegExp)
791
791
  return left.source === right['source'] && left.flags === right['flags'];
792
792
  if (left instanceof Error)
793
- return left.stack === right['stack'];
793
+ return left.message === right['message'] && left.stack === right['stack'];
794
794
  let left_cache = $.$mol_compare_deep_cache.get(left);
795
795
  if (left_cache) {
796
796
  const right_cache = left_cache.get(right);