Skip to content

Instantly share code, notes, and snippets.

@kmonsoor
Last active June 15, 2017 07:10
Show Gist options
  • Select an option

  • Save kmonsoor/2f4234761575dbdf7a988250d82151fa to your computer and use it in GitHub Desktop.

Select an option

Save kmonsoor/2f4234761575dbdf7a988250d82151fa to your computer and use it in GitHub Desktop.
JavaScript : Create GUID / UUID
/*
* Generate RFC4122-v4 compliant high-resolution GUID / UUID
* Source: http://stackoverflow.com/a/8809472/617185
* License: cc-by-sa 3.0
*/
function generateUUID() {
var d = new Date().getTime();
if (window.performance && typeof window.performance.now === "function") {
d += performance.now(); //use high-precision timer if available
}
var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = (d + Math.random() * 16) % 16 | 0;
d = Math.floor(d / 16);
return (c == 'x' ? r : (r & 0x3 | 0x8)).toString(16);
});
return uuid;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment