Compresses and decompresses string using LZW algo.
Orignal ActionScript 2.0 implementation by Mika Palmu in his AsCrypt library, available in http://www.meychi.com/
Original ActionScript port by Ash & Lalek & Shoebox and others :
static public function compress(source:String):String
Compresses and returns passed-in source using LZW algorithm.
source
static public function decompress(source:String):String
Decompresses and returns passed-in source using LZW algorithm.