GoScrobble/web/node_modules/dom-helpers/esm/childElements.js

8 lines
180 B
JavaScript
Raw Normal View History

2022-04-25 02:47:15 +00:00
/**
* Collects all child elements of an element.
*
* @param node the element
*/
export default function childElements(node) {
return node ? Array.from(node.children) : [];
}