(el)
| 6692 | children.forEach((child)=>addChild(parentElement, child)); |
| 6693 | } |
| 6694 | function isElement(el) { |
| 6695 | //nodeType cannot be zero https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType |
| 6696 | return !!el.nodeType; |
| 6697 | } |
| 6698 | function mount(element, container) { |
| 6699 | container.innerHTML = ""; |
| 6700 | if (element) addChild(container, element); |