Files
Webklar.com/node_modules/dom-helpers/cjs/childElements.js
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

15 lines
279 B
JavaScript

"use strict";
exports.__esModule = true;
exports.default = childElements;
/**
* Collects all child elements of an element.
*
* @param node the element
*/
function childElements(node) {
return node ? Array.from(node.children) : [];
}
module.exports = exports["default"];