Skip to content

Instantly share code, notes, and snippets.

@mishalrai
Created April 23, 2018 06:44
Show Gist options
  • Save mishalrai/c0a6c14cc71b7df42335e834f73ffdcf to your computer and use it in GitHub Desktop.
Save mishalrai/c0a6c14cc71b7df42335e834f73ffdcf to your computer and use it in GitHub Desktop.
export const getRandomId = () => {
let random = function () {
return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
};
return (random() + random() + "-" + random() + "-" + random() + "-" + random() + "-" + random() + random() + random());
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment