You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zyp
5e2674a523
|
4 weeks ago | |
---|---|---|
.. | ||
test | 4 weeks ago | |
LICENSE | 4 weeks ago | |
index.js | 4 weeks ago | |
package.json | 4 weeks ago | |
readme.md | 4 weeks ago |
readme.md
tiny-inflate
This is a port of Joergen Ibsen's tiny inflate to JavaScript. Minified it is about 3KB, or 1.3KB gzipped. While being very small, it is also reasonably fast (about 30% - 50% slower than pako on average), and should be good enough for many applications. If you need the absolute best performance, however, you'll need to use a larger library such as pako that contains additional optimizations.
Installation
npm install tiny-inflate
Example
To use tiny-inflate, you need two things: a buffer of data compressed with deflate,
and the decompressed size (often stored in a file header) to allocate your output buffer.
Input and output buffers can be either node Buffer
s, or Uint8Array
s.
var inflate = require('tiny-inflate');
var compressedBuffer = new Bufer([ ... ]);
var decompressedSize = ...;
var outputBuffer = new Buffer(decompressedSize);
inflate(compressedBuffer, outputBuffer);
License
MIT