Skip to content

Instantly share code, notes, and snippets.

@m0o0scar
Last active November 16, 2017 02:28
Show Gist options
  • Save m0o0scar/1745816e895bd526de8bd631f4afb5af to your computer and use it in GitHub Desktop.
Save m0o0scar/1745816e895bd526de8bd631f4afb5af to your computer and use it in GitHub Desktop.
Generate UUID
//generate an uuid with specify length
function uuid(length=26) {
let len = Math.min(length, 50)/2;
return Math.random().toString(36).substring(2, 2+Math.floor(len)) +
Math.random().toString(36).substring(2, 2+Math.ceil(len));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment