Files
chinese-family-tree-2/node_modules/.pnpm/dom-helpers@5.2.1/node_modules/dom-helpers/esm/clear.js
T
freedakgmail 43c8389705 0.0.0.1
2025-11-22 19:52:55 +08:00

16 lines
259 B
JavaScript

/**
* Removes all child nodes from a given node.
*
* @param node the node to clear
*/
export default function clear(node) {
if (node) {
while (node.firstChild) {
node.removeChild(node.firstChild);
}
return node;
}
return null;
}