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

Function gzip

static/word2md/mammoth.browser.js:17390–17394  ·  view source on GitHub ↗

* gzip(data[, options]) -> Uint8Array|Array|String * - data (Uint8Array|Array|String): input data to compress. * - options (Object): zlib deflate options. * * The same as [[deflate]], but create gzip wrapper instead of * deflate one.

(input, options)

Source from the content-addressed store, hash-verified

17388 * deflate one.
17389 **/
17390function gzip(input, options) {
17391 options = options || {};
17392 options.gzip = true;
17393 return deflate(input, options);
17394}
17395
17396
17397exports.Deflate = Deflate;

Callers

nothing calls this directly

Calls 1

deflateFunction · 0.70

Tested by

no test coverage detected