Initial commit

This commit is contained in:
2025-10-08 12:28:02 +02:00
commit e36986b64d
5 changed files with 730 additions and 0 deletions

7
js/helpers.js Normal file
View File

@@ -0,0 +1,7 @@
"use strict";
function nukeChildren(node) {
while (node.childNodes.length > 0) {
node.removeChild(node.childNodes[0]);
}
}