(message: string)
| 9 | }; |
| 10 | |
| 11 | const setStatus = (message: string): void => { |
| 12 | const el = document.getElementById('status'); |
| 13 | if (!el) return; |
| 14 | el.textContent = message; |
| 15 | }; |
| 16 | |
| 17 | /** |
| 18 | * Small deterministic RNG (LCG) for repeatable "random" transitions. |
no outgoing calls
no test coverage detected