* Remove a node by path
(path: string)
| 299 | * Remove a node by path |
| 300 | */ |
| 301 | removeByPath(path: string): boolean { |
| 302 | const node = this.getByPath(path); |
| 303 | return node ? this.removeNode(node.id) : false; |
| 304 | } |
| 305 | |
| 306 | /** |
| 307 | * Move a node |
no test coverage detected