(options = kNullPrototype)
| 679 | } |
| 680 | |
| 681 | function compressDeflate(options = kNullPrototype) { |
| 682 | validateObject(options, 'options'); |
| 683 | return makeZlibTransform( |
| 684 | (cb, onErr) => createZlibHandle(DEFLATE, options, cb, onErr), |
| 685 | Z_NO_FLUSH, Z_FINISH, |
| 686 | ); |
| 687 | } |
| 688 | |
| 689 | function compressBrotli(options = kNullPrototype) { |
| 690 | validateObject(options, 'options'); |
no test coverage detected
searching dependent graphs…