(opts)
| 756 | ObjectSetPrototypeOf(Gunzip, Zlib); |
| 757 | |
| 758 | function DeflateRaw(opts) { |
| 759 | if (opts && opts.windowBits === 8) opts.windowBits = 9; |
| 760 | if (!(this instanceof DeflateRaw)) { |
| 761 | return deprecateInstantiation(DeflateRaw, 'DEP0184', opts); |
| 762 | } |
| 763 | Zlib.call(this, opts, DEFLATERAW); |
| 764 | } |
| 765 | ObjectSetPrototypeOf(DeflateRaw.prototype, Zlib.prototype); |
| 766 | ObjectSetPrototypeOf(DeflateRaw, Zlib); |
| 767 |
nothing calls this directly
no test coverage detected
searching dependent graphs…