Skip to content

Instantly share code, notes, and snippets.

@AndyConlisk
Created June 14, 2017 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndyConlisk/7f05d9b8c3fa43044a99aa5a1a2eefc1 to your computer and use it in GitHub Desktop.
Save AndyConlisk/7f05d9b8c3fa43044a99aa5a1a2eefc1 to your computer and use it in GitHub Desktop.
generate a UUID / GUID in javascript
function generateUUID() {
var d = new Date().getTime();
if (window.performance && typeof window.performance.now === "function") {
d += performance.now();; //use high-precision timer if available
}
var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = (d + Math.random() * 16) % 16 | 0;
d = Math.floor(d / 16);
return (c == 'x' ? r : (r & 0x3 | 0x8)).toString(16);
});
return uuid;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment