MCPcopy Create free account
hub / github.com/TruthHun/BookStack / deflateRaw

Function deflateRaw

static/word2md/mammoth.browser.js:17375–17379  ·  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

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

Callers

nothing calls this directly

Calls 1

deflateFunction · 0.70

Tested by

no test coverage detected