(parent)
| 4698 | * @returns {HtmlNode[]} children array to insert into |
| 4699 | */ |
| 4700 | const childrenOf = (parent) => |
| 4701 | parent.type === NodeType.Element && parent.templateContent |
| 4702 | ? parent.templateContent.children |
| 4703 | : parent.children; |
| 4704 | |
| 4705 | const appendTo = ( |
| 4706 | /** @type {HtmlElement | HtmlDocument | HtmlDocumentFragment} */ parent, |
no outgoing calls
no test coverage detected