Files
trweb/js/helpers.js

8 lines
140 B
JavaScript
Raw Normal View History

2025-10-08 12:28:02 +02:00
"use strict";
function nukeChildren(node) {
while (node.childNodes.length > 0) {
node.removeChild(node.childNodes[0]);
}
}