(value)
| 118 | } |
| 119 | |
| 120 | const continueDestroyCircular = (value) => |
| 121 | destroyCircular({ |
| 122 | from: value, |
| 123 | seen: [...seen], |
| 124 | forceEnumerable, |
| 125 | maxDepth, |
| 126 | depth, |
| 127 | useToJSON, |
| 128 | serialize, |
| 129 | }); |
| 130 | |
| 131 | for (const [key, value] of Object.entries(from)) { |
| 132 | // eslint-disable-next-line node/prefer-global/buffer |
no test coverage detected