Skip to content

Instantly share code, notes, and snippets.

@martinandersen3d
Forked from antonioaguilar/uuid.js
Created December 3, 2017 21:09
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 martinandersen3d/7e69452a89ba97ca434a93bb61d66946 to your computer and use it in GitHub Desktop.
Save martinandersen3d/7e69452a89ba97ca434a93bb61d66946 to your computer and use it in GitHub Desktop.
Generate UUID in Browser
function UUID() {
var d = new Date().getTime();
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