Skip to content

Instantly share code, notes, and snippets.

@andrzejewsky
Created January 10, 2019 21:26
Show Gist options
  • Save andrzejewsky/b1dcbd48300f947fdc25f8cd1eba2853 to your computer and use it in GitHub Desktop.
Save andrzejewsky/b1dcbd48300f947fdc25f8cd1eba2853 to your computer and use it in GitHub Desktop.
calcDuration
const calcDuration = duration => {
const totalMinutes = duration / 60;
const minutes = ~~totalMinutes;
const seconds = ~~((totalMinutes - minutes) * 100);
return `${minutes}m ${seconds}s`;
};
export default calcDuration;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment