(opts)
| 729 | ObjectSetPrototypeOf(Deflate, Zlib); |
| 730 | |
| 731 | function Inflate(opts) { |
| 732 | if (!(this instanceof Inflate)) { |
| 733 | return deprecateInstantiation(Inflate, 'DEP0184', opts); |
| 734 | } |
| 735 | Zlib.call(this, opts, INFLATE); |
| 736 | } |
| 737 | ObjectSetPrototypeOf(Inflate.prototype, Zlib.prototype); |
| 738 | ObjectSetPrototypeOf(Inflate, Zlib); |
| 739 |
nothing calls this directly
no test coverage detected
searching dependent graphs…