You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
spa_instat_tv/src/helpers/msToMinutesAndSeconds/index.tsx

8 lines
264 B

export const msToMinutesAndSeconds = (ms: number) => {
const minutes = Math.floor(ms / 60000)
const seconds = Number(((ms % 60000) / 1000).toFixed(0))
return seconds === 60
? `${minutes + 1}:00`
: `${minutes}:${seconds < 10 ? '0' : ''}${seconds}`
}