Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Created July 8, 2014 14:12
Show Gist options
  • Save ajcrites/346106b9c9b822b835af to your computer and use it in GitHub Desktop.
Save ajcrites/346106b9c9b822b835af to your computer and use it in GitHub Desktop.
reader.pipe(through(function (line) {
console.log(line.toString());
this.push(line);
})).pipe(outputFile);
outputFile.on("close", function (err) {
done(err, tmpFile);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment