Skip to content

Instantly share code, notes, and snippets.

@iarna
Created July 29, 2014 05:31
Show Gist options
  • Save iarna/ecb626ca24c92b43fc75 to your computer and use it in GitHub Desktop.
Save iarna/ecb626ca24c92b43fc75 to your computer and use it in GitHub Desktop.
var stream = require('stream');
function dosomething() {
var out = new stream.PassThrough();
out.write('two');
return out;
}
var source = new stream.PassThrough()
source.pipe(dosomething()).pipe(process.stdout)
source.write('one')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment