Skip to content

Instantly share code, notes, and snippets.

@dyrkow
Created October 2, 2016 16:34
Show Gist options
  • Save dyrkow/2b7c7b4032b73cdfb78241e49feea08d to your computer and use it in GitHub Desktop.
Save dyrkow/2b7c7b4032b73cdfb78241e49feea08d to your computer and use it in GitHub Desktop.
function guid() {
function gen4() {
return Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1);
}
return gen4() + gen4() + '-' + gen4() + '-' + gen4() + '-' + gen4() + '-' + gen4() + gen4() + gen4();
}
// wiki https://ru.wikipedia.org/wiki/GUID
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment