mol_wire_lib 1.0.604 → 1.0.606

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
@@ -842,6 +842,8 @@ var $;
842
842
  result = compare_map(left, right);
843
843
  else if (ArrayBuffer.isView(left))
844
844
  result = compare_buffer(left, right);
845
+ else if (Symbol.iterator in left)
846
+ result = compare_iterator(left[Symbol.iterator](), right[Symbol.iterator]());
845
847
  else if (Symbol.toPrimitive in left)
846
848
  result = compare_primitive(left, right);
847
849
  else