(node: any)
| 212 | try { |
| 213 | const newNodes = await nodesToJSON(nodes, userPluginSettings); |
| 214 | const removeParent = (node: any) => { |
| 215 | if (node.parent) { |
| 216 | delete node.parent; |
| 217 | } |
| 218 | if (node.children) { |
| 219 | node.children.forEach(removeParent); |
| 220 | } |
| 221 | }; |
| 222 | newNodes.forEach(removeParent); |
| 223 | result.newConversion = newNodes; |
| 224 | } catch (error) { |
nothing calls this directly
no outgoing calls
no test coverage detected