(node)
| 11 | } |
| 12 | |
| 13 | function removeNode(node) { |
| 14 | if (node.parentElement !== null) { |
| 15 | node.parentElement.removeChild(node); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | function insertNodeAt(fatherNode, node, position) { |
| 20 | const refNode = |
no outgoing calls
no test coverage detected