(item)
| 4669 | var representation = ""; |
| 4670 | |
| 4671 | function stringify(item) { |
| 4672 | return typeof item === "string" |
| 4673 | ? "'" + item + "'" |
| 4674 | : valueToString(item); |
| 4675 | } |
| 4676 | |
| 4677 | function mapToString(map) { |
| 4678 | /* eslint-disable-next-line local-rules/no-prototype-methods */ |
no test coverage detected