(ms)
| 94 | } |
| 95 | |
| 96 | function fmtMs(ms) { |
| 97 | return ms < 1000 ? `${ms | 0}ms` : `${(ms / 1000).toFixed(2)}s`; |
| 98 | } |
| 99 | |
| 100 | // ---------- Settings (persisted) ---------- |
| 101 | // Prefix is the sub-folder under the user's Downloads dir. Trailing slash auto-appended. |