(e)
| 8161 | }; |
| 8162 | |
| 8163 | function removeChildren(e) { |
| 8164 | for (var count = e.childNodes.length; count > 0; --count) |
| 8165 | e.removeChild(e.firstChild); |
| 8166 | return e; |
| 8167 | } |
| 8168 | |
| 8169 | function removeChildrenAndAdd(parent, e) { |
| 8170 | return removeChildren(parent).appendChild(e); |
no outgoing calls
no test coverage detected