Skip to content

Instantly share code, notes, and snippets.

@rwohleb
Created September 16, 2013 04:41
Show Gist options
  • Save rwohleb/6576751 to your computer and use it in GitHub Desktop.
Save rwohleb/6576751 to your computer and use it in GitHub Desktop.
UUID = {
generateQuad : function() {
return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
},
generateGuid : function() {
return (this.generateQuad() + this.generateQuad() + "-"
+ this.generateQuad() + "-" + this.generateQuad() + "-"
+ this.generateQuad() + "-" + this.generateQuad() + this.generateQuad() + this
.generateQuad());
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment