console-hub/html/utils.js
2019-12-30 20:40:22 +01:00

9 lines
No EOL
156 B
JavaScript

function removeChildNodes(node){
while (node.firstChild) {
node.removeChild(node.firstChild);
}
}
module.exports = {
removeChildNodes
}