(parentElement, children)
| 6689 | else parentElement.appendChild(document.createTextNode(child.toString())); |
| 6690 | } |
| 6691 | function appendChildren(parentElement, children) { |
| 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; |
no test coverage detected