(v)
| 22 | |
| 23 | const $ = (id) => document.getElementById(id); |
| 24 | const esc = (v) => String(v ?? '').replace(/[&<>"']/g, ch => ({'&':'&','<':'<','>':'>','"':'"',"'":'''}[ch])); |
| 25 | const clamp = (v, min, max) => Math.max(min, Math.min(max, v)); |
| 26 | const num = (v) => typeof v === 'number' && Number.isFinite(v) ? v : 0; |
| 27 |
no outgoing calls
no test coverage detected