Skip to content

Instantly share code, notes, and snippets.

@yocontra
Created March 20, 2012 21:15
Show Gist options
  • Save yocontra/2141373 to your computer and use it in GitHub Desktop.
Save yocontra/2141373 to your computer and use it in GitHub Desktop.
UUID
makeUUID = ->
"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace /[xy]/g, (a, b) ->
b = Math.random() * 16
return (if a is "y" then b & 3 | 8 else b | 0).toString 16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment