* inflateRaw(data[, options]) -> Uint8Array|Array|String * - data (Uint8Array|Array|String): input data to decompress. * - options (Object): zlib inflate options. * * The same as [[inflate]], but creates raw data, without wrapper * (header and adler32 crc).
(input, options)
| 5634 | * (header and adler32 crc). |
| 5635 | **/ |
| 5636 | function inflateRaw(input, options) { |
| 5637 | options = options || {}; |
| 5638 | options.raw = true; |
| 5639 | return inflate(input, options); |
| 5640 | } |
| 5641 | |
| 5642 | |
| 5643 | /** |