(e)
| 524 | } |
| 525 | |
| 526 | function removeChildren(e) { |
| 527 | for (var count = e.childNodes.length; count > 0; --count) { |
| 528 | e.removeChild(e.firstChild) |
| 529 | } |
| 530 | return e |
| 531 | } |
| 532 | |
| 533 | function removeChildrenAndAdd(parent, e) { |
| 534 | return removeChildren(parent).appendChild(e) |
no outgoing calls
no test coverage detected