Advertisement
Guest User

Untitled

a guest
May 27th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. myStream.read(function handleChunk(chunk) {
  2. if (!chunk) {
  3. processDone();
  4. return;
  5. }
  6. processChunk(chunk);
  7. myStream.read(handleChunk);
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement