(iterable)
| 4686 | } |
| 4687 | |
| 4688 | function genericIterableToString(iterable) { |
| 4689 | /* eslint-disable-next-line local-rules/no-prototype-methods */ |
| 4690 | iterable.forEach(function(value) { |
| 4691 | representation += stringify(value) + ","; |
| 4692 | }); |
| 4693 | |
| 4694 | representation = slice(representation, 0, -1); |
| 4695 | return representation; |
| 4696 | } |
| 4697 | |
| 4698 | if (typeOf(obj) === "map") { |
| 4699 | return mapToString(obj); |