* 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)
| 17798 | * (header and adler32 crc). |
| 17799 | **/ |
| 17800 | function inflateRaw(input, options) { |
| 17801 | options = options || {}; |
| 17802 | options.raw = true; |
| 17803 | return inflate(input, options); |
| 17804 | } |
| 17805 | |
| 17806 | |
| 17807 | /** |