Created
June 11, 2015 09:28
-
-
Save Alex1990/26ac88a7c8af19cfb729 to your computer and use it in GitHub Desktop.
Unix timestamp
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
| /** | |
| * Unix timestamp - The number of seconds that have elapsed since 1970-01-01 00:00:00 UTC. | |
| */ | |
| function timestamp() { | |
| return Math.round((Date.now ? Date.now() : new Date()) / 1000); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment