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.test.js CHANGED
@@ -1599,7 +1599,7 @@ var $;
1599
1599
  if (left instanceof RegExp)
1600
1600
  return left.source === right['source'] && left.flags === right['flags'];
1601
1601
  if (left instanceof Error)
1602
- return left.stack === right['stack'];
1602
+ return left.message === right['message'] && left.stack === right['stack'];
1603
1603
  let left_cache = $.$mol_compare_deep_cache.get(left);
1604
1604
  if (left_cache) {
1605
1605
  const right_cache = left_cache.get(right);