deemix-web-frontend/app/src/lib/format.js

3 lines
135 B
JavaScript
Raw Normal View History

2022-08-18 09:28:58 +02:00
export function formatTime(s) {
return Math.floor(s / 60).toString().padStart(2, '0') + ':' + (s % 60).toString().padStart(2, '0');
}