(ms)
| 2142 | } |
| 2143 | |
| 2144 | function formatDuration(ms) { |
| 2145 | if (!Number.isFinite(ms)) { |
| 2146 | return "n/a"; |
| 2147 | } |
| 2148 | if (ms >= 60_000) { |
| 2149 | return `${(ms / 60_000).toFixed(2)}m`; |
| 2150 | } |
| 2151 | if (ms >= 1_000) { |
| 2152 | return `${(ms / 1_000).toFixed(2)}s`; |
| 2153 | } |
| 2154 | return `${Math.max(0, Math.round(ms))}ms`; |
| 2155 | } |
| 2156 | |
| 2157 | function logStep(message) { |
| 2158 | if (verbose) { |
no test coverage detected