(s)
| 210 | |
| 211 | const $ = (sel) => document.querySelector(sel); |
| 212 | const esc = (s) => |
| 213 | String(s == null ? "" : s).replace(/[&<>"']/g, (c) => |
| 214 | ({ "&": "&", "<": "<", ">": ">", '"': """, "'": "'" }[c]) |
| 215 | ); |
| 216 | |
| 217 | function toast(msg) { |
| 218 | const t = $("#toast"); |
no outgoing calls
no test coverage detected