Last active
August 26, 2015 08:24
-
-
Save mohayonao/880d10b14403bbb1cb77 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
| function timestampToTimeItems(timestamp) { | |
| return { | |
| hours: (((timestamp / 3600000)|0) + 9) % 24, | |
| minutes: ((timestamp / 60000)|0) % 60, | |
| seconds: ((timestamp / 1000)|0) % 60, | |
| }; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment