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

Function inflateRaw

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

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

Source from the content-addressed store, hash-verified

5634 * (header and adler32 crc).
5635 **/
5636function inflateRaw(input, options) {
5637 options = options || {};
5638 options.raw = true;
5639 return inflate(input, options);
5640}
5641
5642
5643/**

Callers

nothing calls this directly

Calls 1

inflateFunction · 0.70

Tested by

no test coverage detected