Skip to content

Instantly share code, notes, and snippets.

@julenwang
Created September 2, 2021 09:56
Show Gist options
  • Save julenwang/e98934bf360909e6f657f211fc2ec2c2 to your computer and use it in GitHub Desktop.
Save julenwang/e98934bf360909e6f657f211fc2ec2c2 to your computer and use it in GitHub Desktop.
function generateUUID(): string {
return new Array(4)
.fill(0)
.map(() => Math.floor(Math.random() * Number.MAX_SAFE_INTEGER).toString(16))
.join("-");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment