Skip to content

Instantly share code, notes, and snippets.

@luan0ap
Forked from fabiorecife/gist:faa0badf35e33062e0ff
Last active May 23, 2019 20:13
Show Gist options
  • Save luan0ap/b54446534af74af42192cf455618f019 to your computer and use it in GitHub Desktop.
Save luan0ap/b54446534af74af42192cf455618f019 to your computer and use it in GitHub Desktop.
uuid - javascript
const uid = () => 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => {
const r = Math.random() * 16 | 0
const 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