(e)
| 59 | }; |
| 60 | |
| 61 | function removeChildren(e) { |
| 62 | for (var count = e.childNodes.length; count > 0; --count) |
| 63 | { e.removeChild(e.firstChild); } |
| 64 | return e |
| 65 | } |
| 66 | |
| 67 | function removeChildrenAndAdd(parent, e) { |
| 68 | return removeChildren(parent).appendChild(e) |
no outgoing calls
no test coverage detected