mol_plot_all 1.2.614 → 1.2.616

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.mjs CHANGED
@@ -961,6 +961,8 @@ var $;
961
961
  result = compare_map(left, right);
962
962
  else if (ArrayBuffer.isView(left))
963
963
  result = compare_buffer(left, right);
964
+ else if (Symbol.iterator in left)
965
+ result = compare_iterator(left[Symbol.iterator](), right[Symbol.iterator]());
964
966
  else if (Symbol.toPrimitive in left)
965
967
  result = compare_primitive(left, right);
966
968
  else