(e)
| 7099 | }; |
| 7100 | |
| 7101 | function removeChildren(e) { |
| 7102 | for (var count = e.childNodes.length; count > 0; --count) |
| 7103 | e.removeChild(e.firstChild); |
| 7104 | return e; |
| 7105 | } |
| 7106 | |
| 7107 | function removeChildrenAndAdd(parent, e) { |
| 7108 | return removeChildren(parent).appendChild(e); |
no outgoing calls
no test coverage detected
searching dependent graphs…