UNPKG

279 BJavaScriptView Raw
1"use strict";
2
3exports.__esModule = true;
4exports.default = childElements;
5
6/**
7 * Collects all child elements of an element.
8 *
9 * @param node the element
10 */
11function childElements(node) {
12 return node ? Array.from(node.children) : [];
13}
14
15module.exports = exports["default"];
\No newline at end of file