(msg: string)
| 18 | // ── Utilities ───────────────────────────────────────────────────────────────── |
| 19 | |
| 20 | function log(msg: string) { |
| 21 | const ts = new Date().toISOString().slice(11, 23); |
| 22 | logEl.textContent += `[${ts}] ${msg}\n`; |
| 23 | logEl.scrollTop = logEl.scrollHeight; |
| 24 | } |
| 25 | |
| 26 | function clearChildren(el: Element) { |
| 27 | while (el.firstChild) { |
no outgoing calls
no test coverage detected