mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-03 04:50:14 +08:00
6 lines
175 B
JavaScript
6 lines
175 B
JavaScript
export function formatTimecode(seconds) {
|
|
return String(parseInt(seconds / 60)).padStart(2, "0") +
|
|
":"+
|
|
String(parseInt(seconds % 60)).padStart(2, "0");
|
|
}
|