Skip to content

Instantly share code, notes, and snippets.

@LoganBarnett
Last active August 29, 2015 14:08
Show Gist options
  • Save LoganBarnett/122aaa5e62dd322f7164 to your computer and use it in GitHub Desktop.
Save LoganBarnett/122aaa5e62dd322f7164 to your computer and use it in GitHub Desktop.
Coffeescript GUID generator
makeGuid = () ->
'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) ->
r = Math.random() * 16 | 0
if c == 'x'
v = r
else
v = 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