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/web.mjs CHANGED
@@ -952,6 +952,8 @@ var $;
952
952
  result = compare_map(left, right);
953
953
  else if (ArrayBuffer.isView(left))
954
954
  result = compare_buffer(left, right);
955
+ else if (Symbol.iterator in left)
956
+ result = compare_iterator(left[Symbol.iterator](), right[Symbol.iterator]());
955
957
  else if (Symbol.toPrimitive in left)
956
958
  result = compare_primitive(left, right);
957
959
  else