(options = kNullPrototype)
| 751 | } |
| 752 | |
| 753 | function compressDeflateSync(options = kNullPrototype) { |
| 754 | validateObject(options, 'options'); |
| 755 | return makeZlibTransformSync( |
| 756 | (cb, onErr) => createZlibHandle(DEFLATE, options, cb, onErr), |
| 757 | Z_NO_FLUSH, Z_FINISH, |
| 758 | ); |
| 759 | } |
| 760 | |
| 761 | function compressBrotliSync(options = kNullPrototype) { |
| 762 | validateObject(options, 'options'); |
no test coverage detected
searching dependent graphs…