(opts)
| 766 | ObjectSetPrototypeOf(DeflateRaw, Zlib); |
| 767 | |
| 768 | function InflateRaw(opts) { |
| 769 | if (!(this instanceof InflateRaw)) { |
| 770 | return deprecateInstantiation(InflateRaw, 'DEP0184', opts); |
| 771 | } |
| 772 | Zlib.call(this, opts, INFLATERAW); |
| 773 | } |
| 774 | ObjectSetPrototypeOf(InflateRaw.prototype, Zlib.prototype); |
| 775 | ObjectSetPrototypeOf(InflateRaw, Zlib); |
| 776 |
nothing calls this directly
no test coverage detected
searching dependent graphs…