Skip to content

Instantly share code, notes, and snippets.

@identityclash
Forked from genediazjr/guid.js
Created November 11, 2015 06:08
Show Gist options
  • Save identityclash/f568b57b63fedb3d5401 to your computer and use it in GitHub Desktop.
Save identityclash/f568b57b63fedb3d5401 to your computer and use it in GitHub Desktop.
function s4() {
return Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1);
};
function guid() {
return s4() + s4() + '-' + s4() + '-' + s4() + '-' +
s4() + '-' + s4() + s4() + s4();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment