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.
MovieFinder/model/formatTime.ts

6 lines
229 B

export function formatTime(time: number) {
const hours = Math.floor(time / 60);
const minutes = time % 60;
const minutesToDisplay = minutes < 10 ? `0${minutes}` : minutes
return `${hours}h ${minutesToDisplay}m`;
}