Skip to content

Instantly share code, notes, and snippets.

@genee19
Created May 4, 2012 13:04
Show Gist options
  • Save genee19/2594701 to your computer and use it in GitHub Desktop.
Save genee19/2594701 to your computer and use it in GitHub Desktop.
UUID generator in 8 lines of CoffeeScript
UUID: ->
hex = "0123456789ABCDEF"
s = (Math.floor(Math.random() * 0x10) for [0..35])
s[14] = 4
s[19] = (s[19] & 0x3) | 0x8
s = (hex[num] for num in s)
s[8] = s[13] = s[18] = s[23] = "-"
s.join ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment