Fomafix babcfc05e4 easydeflate.js: Use LF instead of CRLF as newline | 6 vuotta sitten | |
---|---|---|
.. | ||
README.md | 6 vuotta sitten | |
deflate.js | 6 vuotta sitten | |
easydeflate.js | 6 vuotta sitten | |
inflate.js | 6 vuotta sitten |
Modified version of Easy-Deflate https://github.com/Jacob-Christian-Munch-Andersen/Easy-Deflate
This version: https://github.com/edg2s/Easy-Deflate
Modifications by Ed Sanders, Public Domain.
Library for compressing and decompressing strings in JavaScript, feature full Unicode support and is compatible with most browsers.
Copy the script inclusion from demo.html.
Call EasyDeflate.deflate(foo) in order to compress a string.
Call EasyDeflate.inflate(bar) in order to decompress a string compressed in this manner.
Both functions return a string, or null in case of illegal input.
The compression works by first UTF-8 encoding the input, then compressing it to a raw deflate stream. The stream is then base64 encoded, and finally the identifier "rawdeflate," is prepended.
Gildas Lormeau made the JavaScript conversion of a Deflate utility: https://github.com/gildas-lormeau/zip.js
Jacob Christian Munch-Andersen made this package in order to make simple use easier and compatible with older browsers.
The following shims are included:
es5-shim by Kristopher Michael Kowal https://github.com/kriskowal/es5-shim
JSON 3 by Kit Cambridge http://bestiejs.github.com/json3/
Typed arrays light shim by Jacob Christian Munch-Andersen https://github.com/Jacob-Christian-Munch-Andersen/Typed-arrays-light-shim
base64 by Yaffle https://gist.github.com/1284012
Main packages come with a BSD licence, the shims, except for base64 that include no license text, each has a permissive license.