(options = kNullPrototype)
| 707 | // --------------------------------------------------------------------------- |
| 708 | |
| 709 | function decompressGzip(options = kNullPrototype) { |
| 710 | validateObject(options, 'options'); |
| 711 | return makeZlibTransform( |
| 712 | (cb, onErr) => createZlibHandle(GUNZIP, options, cb, onErr), |
| 713 | Z_NO_FLUSH, Z_FINISH, |
| 714 | ); |
| 715 | } |
| 716 | |
| 717 | function decompressDeflate(options = kNullPrototype) { |
| 718 | validateObject(options, 'options'); |
no test coverage detected
searching dependent graphs…