(items)
| 190 | $status.textContent = `Status: ${text}`; |
| 191 | } |
| 192 | function setQueue(items) { |
| 193 | $queue.textContent = items.length ? items.map((t, i) => `${i + 1}. ${t}`).join("\n") : "(none)"; |
| 194 | } |
| 195 | |
| 196 | // ---------- Pretty Stack ----------- |
| 197 | function prettyStack(errorOrStack, options = {}) { |
no outgoing calls
no test coverage detected