Skip to content

Instantly share code, notes, and snippets.

@lightsofapollo
Created July 9, 2015 05:12
Show Gist options
  • Save lightsofapollo/b3ed7740b27b20108c96 to your computer and use it in GitHub Desktop.
Save lightsofapollo/b3ed7740b27b20108c96 to your computer and use it in GitHub Desktop.
var readable = getReadableStreamSomehow();
readable.on('readable', function() {
var chunk;
while (null !== (chunk = readable.read())) {
console.log('got %d bytes of data', chunk.length);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment