MCPcopy
hub / github.com/jagenjo/webglstudio.js / gzip

Function gzip

editor/js/extra/jszip.js:5733–5737  ·  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

5731 * deflate one.
5732 **/
5733function gzip(input, options) {
5734 options = options || {};
5735 options.gzip = true;
5736 return deflate(input, options);
5737}
5738
5739
5740exports.Deflate = Deflate;

Callers

nothing calls this directly

Calls 1

deflateFunction · 0.70

Tested by

no test coverage detected