Skip to content

Instantly share code, notes, and snippets.

@JulesAU
Created November 23, 2016 03:28
Show Gist options
  • Save JulesAU/0af8474266f161e53b69076e45384052 to your computer and use it in GitHub Desktop.
Save JulesAU/0af8474266f161e53b69076e45384052 to your computer and use it in GitHub Desktop.
/* render HH:mm from a time delta */
function renderMinutesSeconds(ts, now) {
var seconds = Math.round(now - ts);
var minutes = Math.floor(seconds / 60);
seconds = (seconds % 60);
return String("0" + minutes).slice(-2) + ":" + String("0" + seconds).slice(-2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment