(key)
| 74 | } |
| 75 | |
| 76 | function formatPropertyKey(key) { |
| 77 | if (typeof key === 'symbol') |
| 78 | return `[${formatSymbol(key)}]`; |
| 79 | return `${key}`; |
| 80 | } |
| 81 | |
| 82 | function formatObject(obj, properties, printedObjects = new WeakSet()) { |
| 83 | printedObjects.add(obj); |
no test coverage detected