* 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)
| 17373 | * (header and adler32 crc). |
| 17374 | **/ |
| 17375 | function deflateRaw(input, options) { |
| 17376 | options = options || {}; |
| 17377 | options.raw = true; |
| 17378 | return deflate(input, options); |
| 17379 | } |
| 17380 | |
| 17381 | |
| 17382 | /** |