Skip to content

Instantly share code, notes, and snippets.

@n1t0
Created February 7, 2012 16:09
Show Gist options
  • Save n1t0/1760444 to your computer and use it in GitHub Desktop.
Save n1t0/1760444 to your computer and use it in GitHub Desktop.
upload fix
if (upload) {
upload.on('data', function(buf) {
console.log('data');
rstream.write(buf);
});
upload.on('end', function() {
console.log('end');
rstream.end();
});
//upload.pipe(rstream);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment