(opts)
| 747 | ObjectSetPrototypeOf(Gzip, Zlib); |
| 748 | |
| 749 | function Gunzip(opts) { |
| 750 | if (!(this instanceof Gunzip)) { |
| 751 | return deprecateInstantiation(Gunzip, 'DEP0184', opts); |
| 752 | } |
| 753 | Zlib.call(this, opts, GUNZIP); |
| 754 | } |
| 755 | ObjectSetPrototypeOf(Gunzip.prototype, Zlib.prototype); |
| 756 | ObjectSetPrototypeOf(Gunzip, Zlib); |
| 757 |
nothing calls this directly
no test coverage detected
searching dependent graphs…