(options = kNullPrototype)
| 779 | // --------------------------------------------------------------------------- |
| 780 | |
| 781 | function decompressGzipSync(options = kNullPrototype) { |
| 782 | validateObject(options, 'options'); |
| 783 | return makeZlibTransformSync( |
| 784 | (cb, onErr) => createZlibHandle(GUNZIP, options, cb, onErr), |
| 785 | Z_NO_FLUSH, Z_FINISH, |
| 786 | ); |
| 787 | } |
| 788 | |
| 789 | function decompressDeflateSync(options = kNullPrototype) { |
| 790 | validateObject(options, 'options'); |
no test coverage detected
searching dependent graphs…