Skip to content

Instantly share code, notes, and snippets.

@alexcmgit
Last active June 11, 2020 16:22
Show Gist options
  • Save alexcmgit/1be1d93510a3223c2fee25f05376b20f to your computer and use it in GitHub Desktop.
Save alexcmgit/1be1d93510a3223c2fee25f05376b20f to your computer and use it in GitHub Desktop.
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