first commit ish

This commit is contained in:
Nils Blomgren
2026-06-04 08:51:22 +02:00
parent e0f967482e
commit 658f15d086
320 changed files with 307404 additions and 1187 deletions

View File

@@ -0,0 +1,4 @@
export function getElementValue(id) {
const el = document.getElementById(id);
return el ? el.value : '';
}