(progress)
| 1453 | }, |
| 1454 | |
| 1455 | formatProgress(progress) { |
| 1456 | const value = Number(progress || 0); |
| 1457 | return `${Math.max(0, Math.min(100, value)).toFixed(0)}%`; |
| 1458 | }, |
| 1459 | |
| 1460 | formatTime(seconds) { |
| 1461 | const total = Math.max(0, Math.floor(Number(seconds || 0))); |
nothing calls this directly
no outgoing calls
no test coverage detected