Skip to content

Instantly share code, notes, and snippets.

@milksense
Created July 9, 2025 20:50
Show Gist options
  • Save milksense/3326bb28d99f9706af129f56f9dc7f7b to your computer and use it in GitHub Desktop.
Save milksense/3326bb28d99f9706af129f56f9dc7f7b to your computer and use it in GitHub Desktop.
Seconds to human readable format
function formatDuration(seconds: number): string {
let m = Math. floor (seconds / 60);
let s = seconds % 60;
return `${m}:${s.toString().padStart(2, "0")}`;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment