Created
February 18, 2014 16:15
-
-
Save stefek99/9074068 to your computer and use it in GitHub Desktop.
Very simple timestamp. Sortable output ```20141181-1392740100138```
This file contains 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
var _filename = function() { | |
var now = new Date(); | |
return now.getFullYear() + ('0' + now.getMonth()+1).slice(-2) + ('0' + now.getDate()+1).slice(-2) + "-" + now.getTime(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment