Skip to content

Instantly share code, notes, and snippets.

@beenhere4hours
Created August 19, 2016 01:04
Show Gist options
  • Save beenhere4hours/fb9e2ebc38ffb4c8c1ad1a7ddf5aedab to your computer and use it in GitHub Desktop.
Save beenhere4hours/fb9e2ebc38ffb4c8c1ad1a7ddf5aedab to your computer and use it in GitHub Desktop.
function Util() {
Util.guid = function() {
return this.s4() + this.s4() + '-' + this.s4() + '-' + this.s4() + '-' + this.s4() + '-' + this.s4() + this.s4() + this.s4();
}
Util.s4 = function() {
return Math.floor((1 + Math.random()) * 0x10000).toString(16).substring(1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment