Last active
October 6, 2021 01:42
-
-
Save zakcodez/8e0f8a07c2a5978a319cfb8e541cbab8 to your computer and use it in GitHub Desktop.
A JavaScript Guid / UUID generator (works on node and web)
This file contains 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 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