(mbps: number)
| 75 | * @returns Formatted string (e.g., "2.5 MB/s") |
| 76 | */ |
| 77 | export function formatSpeed(mbps: number): string { |
| 78 | return `${mbps.toFixed(1)} MB/s`; |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Format estimated time remaining |
no outgoing calls
no test coverage detected