(childElm, listeners)
| 4572 | } |
| 4573 | |
| 4574 | function createRmCb (childElm, listeners) { |
| 4575 | function remove$$1 () { |
| 4576 | if (--remove$$1.listeners === 0) { |
| 4577 | removeNode(childElm); |
| 4578 | } |
| 4579 | } |
| 4580 | remove$$1.listeners = listeners; |
| 4581 | return remove$$1 |
| 4582 | } |
| 4583 | |
| 4584 | function removeNode (el) { |
| 4585 | var parent = nodeOps.parentNode(el); |
no outgoing calls
no test coverage detected