8 lines
No EOL
180 B
JavaScript
Executable file
8 lines
No EOL
180 B
JavaScript
Executable file
/**
|
|
* Collects all child elements of an element.
|
|
*
|
|
* @param node the element
|
|
*/
|
|
export default function childElements(node) {
|
|
return node ? Array.from(node.children) : [];
|
|
} |