* deflateRaw(data[, options]) -> Uint8Array|Array|String * - data (Uint8Array|Array|String): input data to compress. * - options (Object): zlib deflate options. * * The same as [[deflate]], but creates raw data, without wrapper * (header and adler32 crc).
(input, options)
| 5209 | * (header and adler32 crc). |
| 5210 | **/ |
| 5211 | function deflateRaw(input, options) { |
| 5212 | options = options || {}; |
| 5213 | options.raw = true; |
| 5214 | return deflate(input, options); |
| 5215 | } |
| 5216 | |
| 5217 | |
| 5218 | /** |