(value: number)
| 1 | import { roundToMultiple } from 'src/code/utils/math'; |
| 2 | |
| 3 | export function roundTimeToMinutes(value: number): number { |
| 4 | return roundToMultiple(value, { |
| 5 | base: 60 * 1000, |
| 6 | roundFunc: Math.floor, |
| 7 | }); |
| 8 | } |
no test coverage detected