(e)
| 8397 | }; |
| 8398 | |
| 8399 | function removeChildren(e) { |
| 8400 | for (var count = e.childNodes.length; count > 0; --count) |
| 8401 | e.removeChild(e.firstChild); |
| 8402 | return e; |
| 8403 | } |
| 8404 | |
| 8405 | function removeChildrenAndAdd(parent, e) { |
| 8406 | return removeChildren(parent).appendChild(e); |
no outgoing calls
no test coverage detected