(sel)
| 209 | let autopilotRunning = false; |
| 210 | |
| 211 | const $ = (sel) => document.querySelector(sel); |
| 212 | const esc = (s) => |
| 213 | String(s == null ? "" : s).replace(/[&<>"']/g, (c) => |
| 214 | ({ "&": "&", "<": "<", ">": ">", '"': """, "'": "'" }[c]) |
no outgoing calls
no test coverage detected