(e)
| 8429 | }; |
| 8430 | |
| 8431 | function removeChildren(e) { |
| 8432 | for (var count = e.childNodes.length; count > 0; --count) |
| 8433 | e.removeChild(e.firstChild); |
| 8434 | return e; |
| 8435 | } |
| 8436 | |
| 8437 | function removeChildrenAndAdd(parent, e) { |
| 8438 | return removeChildren(parent).appendChild(e); |
no outgoing calls
no test coverage detected