Last active
August 29, 2015 14:22
-
-
Save catdad/921013eb74d652a0bf73 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
| // the purpose of this is not to match any ID standard, but to allow for a | |
| // reasonably and reliably unique ID when generating on a distributed system | |
| function getId() { | |
| return btoa( | |
| (Math.random().toString(36).slice(-4)) + '_' + | |
| (new Date()).toISOString() + '_' + | |
| (Math.random().toString(36).slice(-6)) | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment