We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 984cec1 commit 7630bcdCopy full SHA for 7630bcd
gzipper-example2.js
@@ -9,7 +9,7 @@ http.createServer(function(request, response) {
9
form.onPart = function(part) {
10
11
// gzip the uploaded data and write to disk
12
- var zippedFile = fs.createWriteStream('./files/large-file.zip')
+ var zippedFile = fs.createWriteStream('./files/large-file.txt.zip')
13
, gzipper = new GZipStream();
14
part.pipe(gzipper).pipe(zippedFile);
15
0 commit comments