fix time formatting
All checks were successful
deploy / deploy (push) Successful in 57s

This commit is contained in:
Lee
2023-10-23 16:27:44 +01:00
parent b88c33e91c
commit cc1b6d9a63
3 changed files with 33 additions and 6 deletions

View File

@ -41,3 +41,21 @@ export function formatDate(timestamp: string) {
minute: "numeric",
});
}
/**
* Formats a time in milliseconds to a human readable format
*
* @param ms the time in milliseconds
* @returns the formatted time
*/
export function formatMsToTime(ms: number) {
const seconds = Math.floor((ms / 1000) % 60);
const minutes = Math.floor((ms / (1000 * 60)) % 60);
const hours = Math.floor((ms / (1000 * 60 * 60)) % 24);
const hoursStr = hours > 0 ? hours.toString() + ":" : "";
const minutesStr = minutes.toString().padStart(2, "0") + ":";
const secondsStr = seconds.toString().padStart(2, "0");
return hoursStr + minutesStr + secondsStr;
}