MCPcopy Index your code
hub / github.com/nodejs/node / Unzip

Function Unzip

lib/zlib.js:777–782  ·  view source on GitHub ↗
(opts)

Source from the content-addressed store, hash-verified

775ObjectSetPrototypeOf(InflateRaw, Zlib);
776
777function Unzip(opts) {
778 if (!(this instanceof Unzip)) {
779 return deprecateInstantiation(Unzip, 'DEP0184', opts);
780 }
781 Zlib.call(this, opts, UNZIP);
782}
783ObjectSetPrototypeOf(Unzip.prototype, Zlib.prototype);
784ObjectSetPrototypeOf(Unzip, Zlib);
785

Callers

nothing calls this directly

Calls 2

deprecateInstantiationFunction · 0.85
callMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…