mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
5 lines
218 B
TypeScript
5 lines
218 B
TypeScript
export function msToMinAndSec(ms: number) {
|
|
const minutes = Math.floor(ms / 60000);
|
|
const seconds:number = parseInt(((ms % 60000) / 1000).toFixed(0));
|
|
return minutes + ":" + (seconds < 10 ? '0' : '') + seconds;
|
|
} |