Skip to content

Instantly share code, notes, and snippets.

@leafiy
Created May 18, 2018 18:56
Show Gist options
  • Select an option

  • Save leafiy/87c47592dcfa768fbce82da6f5066347 to your computer and use it in GitHub Desktop.

Select an option

Save leafiy/87c47592dcfa768fbce82da6f5066347 to your computer and use it in GitHub Desktop.
none
export const convertTimeHHMMSS = (val) => {
let hhmmss = new Date(val * 1000).toISOString().substr(11, 8)
return (hhmmss.indexOf('00:') === 0) ? hhmmss.substr(3) : hhmmss
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment