(options = kNullPrototype)
| 787 | } |
| 788 | |
| 789 | function decompressDeflateSync(options = kNullPrototype) { |
| 790 | validateObject(options, 'options'); |
| 791 | return makeZlibTransformSync( |
| 792 | (cb, onErr) => createZlibHandle(INFLATE, options, cb, onErr), |
| 793 | Z_NO_FLUSH, Z_FINISH, |
| 794 | ); |
| 795 | } |
| 796 | |
| 797 | function decompressBrotliSync(options = kNullPrototype) { |
| 798 | validateObject(options, 'options'); |
no test coverage detected
searching dependent graphs…