Spaces:
Sleeping
Sleeping
File size: 404 Bytes
bb9ca3a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | function padTime(time: number) {
return String(time).padStart(2, "0");
}
export function formatAudioTimestamp(time: number) {
const hours = (time / (60 * 60)) | 0;
time -= hours * (60 * 60);
const minutes = (time / 60) | 0;
time -= minutes * 60;
const seconds = time | 0;
return `${hours ? padTime(hours) + ":" : ""}${padTime(minutes)}:${padTime(
seconds,
)}`;
}
|