Files
ETB/ETB-FrontEnd/node_modules/dom-helpers/esm/childElements.js
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03: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) : [];
}