Last active
August 29, 2015 14:06
-
-
Save h2non/4a328c4256217ca3b99d to your computer and use it in GitHub Desktop.
Time-based UUID v4 compliant generator (RFC4122 compliant)
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 uuid() { | |
var uuid = "", i, random; | |
for (i = 0; i < 32; i++) { | |
random = Math.random() * 16 | 0; | |
if (i == 8 || i == 12 || i == 16 || i == 20) uuid += "-" | |
uuid += (i == 12 ? 4 : (i == 16 ? (random & 3 | 8) : random)).toString(16) | |
} | |
return uuid | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment