Skip to content

Instantly share code, notes, and snippets.

@floydpink
Created December 7, 2012 03:17
Show Gist options
  • Save floydpink/4230480 to your computer and use it in GitHub Desktop.
Save floydpink/4230480 to your computer and use it in GitHub Desktop.
lzwCompress.js
// To compress anything from within JS
var compressed = lzwCompress.pack(humongousObj);
// And to decompress it
var original = lzwCompress.unpack(compressed);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment