MCPcopy Index your code
hub / github.com/hoothin/UserScripts / gzip

Function gzip

Picviewer CE+/dist.user.js:5226–5230  ·  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

5224 * deflate one.
5225 **/
5226function gzip(input, options) {
5227 options = options || {};
5228 options.gzip = true;
5229 return deflate(input, options);
5230}
5231
5232
5233exports.Deflate = Deflate;

Callers

nothing calls this directly

Calls 1

deflateFunction · 0.70

Tested by

no test coverage detected