Skip to content

Instantly share code, notes, and snippets.

@jgcmarins
Created July 22, 2020 20:36
Show Gist options
  • Save jgcmarins/28cf38c90dd7de2724db52a1aac813ce to your computer and use it in GitHub Desktop.
Save jgcmarins/28cf38c90dd7de2724db52a1aac813ce to your computer and use it in GitHub Desktop.
// inspired by https://stackoverflow.com/questions/105034/how-to-create-guid-uuid/2117523#2117523
// @TODO - improve this
export function uuidv4() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
const r = (Math.random() * 16) | 0,
v = c == 'x' ? r : (r & 0x3) | 0x8;
return v.toString(16);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment