(opts)
| 775 | ObjectSetPrototypeOf(InflateRaw, Zlib); |
| 776 | |
| 777 | function Unzip(opts) { |
| 778 | if (!(this instanceof Unzip)) { |
| 779 | return deprecateInstantiation(Unzip, 'DEP0184', opts); |
| 780 | } |
| 781 | Zlib.call(this, opts, UNZIP); |
| 782 | } |
| 783 | ObjectSetPrototypeOf(Unzip.prototype, Zlib.prototype); |
| 784 | ObjectSetPrototypeOf(Unzip, Zlib); |
| 785 |
nothing calls this directly
no test coverage detected
searching dependent graphs…