(opts)
| 720 | // generic zlib |
| 721 | // minimal 2-byte header |
| 722 | function Deflate(opts) { |
| 723 | if (!(this instanceof Deflate)) { |
| 724 | return deprecateInstantiation(Deflate, 'DEP0184', opts); |
| 725 | } |
| 726 | Zlib.call(this, opts, DEFLATE); |
| 727 | } |
| 728 | ObjectSetPrototypeOf(Deflate.prototype, Zlib.prototype); |
| 729 | ObjectSetPrototypeOf(Deflate, Zlib); |
| 730 |
nothing calls this directly
no test coverage detected
searching dependent graphs…