Files
khalij-pay/node_modules/dom-helpers/cjs/childElements.js
2025-10-23 21:52:07 +03:30

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"];