(map)
| 4675 | } |
| 4676 | |
| 4677 | function mapToString(map) { |
| 4678 | /* eslint-disable-next-line local-rules/no-prototype-methods */ |
| 4679 | map.forEach(function(value, key) { |
| 4680 | representation += |
| 4681 | "[" + stringify(key) + "," + stringify(value) + "],"; |
| 4682 | }); |
| 4683 | |
| 4684 | representation = slice(representation, 0, -1); |
| 4685 | return representation; |
| 4686 | } |
| 4687 | |
| 4688 | function genericIterableToString(iterable) { |
| 4689 | /* eslint-disable-next-line local-rules/no-prototype-methods */ |