Skip to content

Instantly share code, notes, and snippets.

@elgervb
Last active April 6, 2016 14:09
Show Gist options
  • Save elgervb/792e47f52e632b28b9a0 to your computer and use it in GitHub Desktop.
Save elgervb/792e47f52e632b28b9a0 to your computer and use it in GitHub Desktop.
Create GUID
/**
* Creates a random guid.
*
* @example 064ca254-ab32-4a0b-bb38-4a35c730f323
*/
function guid(){
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = Math.random()*16|0, v = c === 'x' ? r : (r&0x3|0x8);
return v.toString(16);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment