(v)
| 67 | } |
| 68 | |
| 69 | function fmtVal(v) { |
| 70 | return v === undefined |
| 71 | ? '<i style="color:#94a3b8">not set</i>' |
| 72 | : escHtml(JSON.stringify(v)); |
| 73 | } |
| 74 | |
| 75 | function nowTime() { |
| 76 | return new Date().toLocaleTimeString('en-GB', { hour12: false }); |
no test coverage detected