(options = kNullPrototype)
| 671 | const kNullPrototype = { __proto__: null }; |
| 672 | |
| 673 | function compressGzip(options = kNullPrototype) { |
| 674 | validateObject(options, 'options'); |
| 675 | return makeZlibTransform( |
| 676 | (cb, onErr) => createZlibHandle(GZIP, options, cb, onErr), |
| 677 | Z_NO_FLUSH, Z_FINISH, |
| 678 | ); |
| 679 | } |
| 680 | |
| 681 | function compressDeflate(options = kNullPrototype) { |
| 682 | validateObject(options, 'options'); |
no test coverage detected