Skip to content

Instantly share code, notes, and snippets.

@sketchpunk
Created June 11, 2020 16:14
Show Gist options
  • Save sketchpunk/f5c8f4041ba64eb9c330d3f9596d290d to your computer and use it in GitHub Desktop.
Save sketchpunk/f5c8f4041ba64eb9c330d3f9596d290d to your computer and use it in GitHub Desktop.
Generate UUID in javascript
function uuid(){
let dt = new Date().getTime();
if( window.performance && typeof window.performance.now === "function" ) dt += performance.now(); //use high-precision timer if available
let uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = (dt + Math.random()*16)%16 | 0;
dt = Math.floor(dt/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