Created
June 11, 2020 16:14
-
-
Save sketchpunk/f5c8f4041ba64eb9c330d3f9596d290d to your computer and use it in GitHub Desktop.
Generate UUID in javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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