(s)
| 99 | return m + ":" + String(s).padStart(2, "0"); |
| 100 | } |
| 101 | function esc(s) { |
| 102 | return String(s).replace(/[&<>"]/g, (c) => ({ "&": "&", "<": "<", ">": ">", '"': """ })[c]); |
| 103 | } |
| 104 | |
| 105 | // Cover/thumbnail art. Uses the real YouTube/SoundCloud thumbnail when present |
| 106 | // (layered over the gradient as a fallback if it fails to load); otherwise the |
no outgoing calls
no test coverage detected