(options = kNullPrototype)
| 743 | // --------------------------------------------------------------------------- |
| 744 | |
| 745 | function compressGzipSync(options = kNullPrototype) { |
| 746 | validateObject(options, 'options'); |
| 747 | return makeZlibTransformSync( |
| 748 | (cb, onErr) => createZlibHandle(GZIP, options, cb, onErr), |
| 749 | Z_NO_FLUSH, Z_FINISH, |
| 750 | ); |
| 751 | } |
| 752 | |
| 753 | function compressDeflateSync(options = kNullPrototype) { |
| 754 | validateObject(options, 'options'); |
no test coverage detected
searching dependent graphs…