(options = kNullPrototype)
| 715 | } |
| 716 | |
| 717 | function decompressDeflate(options = kNullPrototype) { |
| 718 | validateObject(options, 'options'); |
| 719 | return makeZlibTransform( |
| 720 | (cb, onErr) => createZlibHandle(INFLATE, options, cb, onErr), |
| 721 | Z_NO_FLUSH, Z_FINISH, |
| 722 | ); |
| 723 | } |
| 724 | |
| 725 | function decompressBrotli(options = kNullPrototype) { |
| 726 | validateObject(options, 'options'); |
no test coverage detected
searching dependent graphs…