Files
sp80/sample_interface/node_modules/dom-helpers/esm/childElements.js
2026-03-13 15:46:10 +08:00

8 lines
180 B
JavaScript

/**
* Collects all child elements of an element.
*
* @param node the element
*/
export default function childElements(node) {
return node ? Array.from(node.children) : [];
}