Created
July 21, 2022 08:39
-
-
Save Ivannnnn/13a55194554d69f9016a19916183cb7f to your computer and use it in GitHub Desktop.
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
| const secs2Time = (secs) => { | |
| const hours = Math.floor(secs / 60 / 60).toString().padStart(2, 0) | |
| return hours + ':' + new Date(secs * 1000).toISOString().substr(14, 5) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment