(speed: number)
| 32 | } |
| 33 | |
| 34 | export function formatSpeed(speed: number): string { |
| 35 | return Number.isInteger(speed) ? `${speed}x` : `${speed}x`; |
| 36 | } |
| 37 | |
| 38 | export function formatTime(seconds: number): string { |
| 39 | // Handle non-finite values gracefully |
no outgoing calls
no test coverage detected