Skip to content

Instantly share code, notes, and snippets.

@zakcodez
Last active October 6, 2021 01:42
Show Gist options
  • Save zakcodez/8e0f8a07c2a5978a319cfb8e541cbab8 to your computer and use it in GitHub Desktop.
Save zakcodez/8e0f8a07c2a5978a319cfb8e541cbab8 to your computer and use it in GitHub Desktop.
A JavaScript Guid / UUID generator (works on node and web)
function randomUUID() {
const GUID_STRUCTURE = "xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxx";
const GUID_CHARACTERS = {
"x": "0123456789abcdef",
"M": "12345",
"N": "89ab"
}
const replaceCharacter = (character) => {
const characters = GUID_CHARACTERS[character];
const index = (typeof module === "object" &&
typeof process === "object" &&
typeof require === "function")
? require("crypto").randomInt(characters.length)
: Math.floor(Math.random() * characters.length);
return characters[index];
}
return GUID_STRUCTURE
.replace(/M/gi, replaceCharacter)
.replace(/N/gi, "4")
.replace(/x/gi, replaceCharacter);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment