Last active
June 11, 2020 16:22
-
-
Save alexcmgit/1be1d93510a3223c2fee25f05376b20f to your computer and use it in GitHub Desktop.
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 createUniqueId() { | |
let dt = new Date().getTime(); | |
const uuid = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function( | |
c | |
) { | |
let r = (dt + Math.random() * 16) % 16 | 0; | |
dt = Math.floor(dt / 16); | |
return (c === "x" ? r : (r & 0x3) | 0x8).toString(16); | |
}); | |
return "id-" + uuid; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment