You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
var zlib = require('zlib');
var gzip = zlib.createGzip();
var fs = require('fs');
var inp = fs.createReadStream('test.iso');
var out = fs.createWriteStream('out.iso.gz');
inp.pipe(gzip).pipe(out);
The compressed file is corrupted.
The text was updated successfully, but these errors were encountered:
Create a 695 MB file with,
Compress it with,
The compressed file is corrupted.
The text was updated successfully, but these errors were encountered: