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

Function inflateRaw

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

17798 * (header and adler32 crc).
17799 **/
17800function inflateRaw(input, options) {
17801 options = options || {};
17802 options.raw = true;
17803 return inflate(input, options);
17804}
17805
17806
17807/**

Callers

nothing calls this directly

Calls 1

inflateFunction · 0.70

Tested by

no test coverage detected