Skip to content

Instantly share code, notes, and snippets.

@vip3r011
Forked from jcxplorer/uuid.js
Created May 22, 2018 22:47
Show Gist options
  • Save vip3r011/29441d05246a3ceddfab4aa53bfe1172 to your computer and use it in GitHub Desktop.
Save vip3r011/29441d05246a3ceddfab4aa53bfe1172 to your computer and use it in GitHub Desktop.
UUID v4 generator in JavaScript (RFC4122 compliant)
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