MCPcopy Create free account
hub / github.com/hoothin/UserScripts / deflateRaw

Function deflateRaw

Picviewer CE+/dist.user.js:5211–5215  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

5209 * (header and adler32 crc).
5210 **/
5211function deflateRaw(input, options) {
5212 options = options || {};
5213 options.raw = true;
5214 return deflate(input, options);
5215}
5216
5217
5218/**

Callers

nothing calls this directly

Calls 1

deflateFunction · 0.70

Tested by

no test coverage detected