(opts)
| 738 | ObjectSetPrototypeOf(Inflate, Zlib); |
| 739 | |
| 740 | function Gzip(opts) { |
| 741 | if (!(this instanceof Gzip)) { |
| 742 | return deprecateInstantiation(Gzip, 'DEP0184', opts); |
| 743 | } |
| 744 | Zlib.call(this, opts, GZIP); |
| 745 | } |
| 746 | ObjectSetPrototypeOf(Gzip.prototype, Zlib.prototype); |
| 747 | ObjectSetPrototypeOf(Gzip, Zlib); |
| 748 |
nothing calls this directly
no test coverage detected
searching dependent graphs…