Skip to content

Instantly share code, notes, and snippets.

@Higgs1
Created March 27, 2015 05:59
Show Gist options
  • Save Higgs1/cebedef2e775ea63fcbc to your computer and use it in GitHub Desktop.
Save Higgs1/cebedef2e775ea63fcbc to your computer and use it in GitHub Desktop.
CoffeeScript CRC-32
crc32 = do ->
table =
for n in [0..255]
for [0..7]
if n & 1
n = 0xEDB88320 ^ n >>> 1
else
n >>>= 1
n
(str, crc = -1) ->
for c in str
crc = crc >>> 8 ^ table[(crc ^ c.charCodeAt 0) & 255]
(crc ^ -1) >>> 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment