Created
May 18, 2018 18:56
-
-
Save leafiy/87c47592dcfa768fbce82da6f5066347 to your computer and use it in GitHub Desktop.
none
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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