Skip to content

Instantly share code, notes, and snippets.

@olekenneth
Last active November 1, 2024 12:31
Show Gist options
  • Select an option

  • Save olekenneth/4159e11caf02c57a4325d77b66c3316b to your computer and use it in GitHub Desktop.

Select an option

Save olekenneth/4159e11caf02c57a4325d77b66c3316b to your computer and use it in GitHub Desktop.
Generate password style text uuid of some sort
((groups = 0) => {
return Array.from({ length: groups }, () =>
Math.random().toString(36).substring(2, 7)
).join('-');
})(4);
// 'glj50-igpkd-46q7m-rre8r'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment