Skip to content

Instantly share code, notes, and snippets.

@Ormadont
Created March 28, 2022 11:49
Show Gist options
  • Save Ormadont/5e0916a398339194a5f9cefb5655313d to your computer and use it in GitHub Desktop.
Save Ormadont/5e0916a398339194a5f9cefb5655313d to your computer and use it in GitHub Desktop.
simple guid
const newGuid = Date.now().toString(36) + Math.random().toString(36).substring(2);
export default newGuid;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment