Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. response.addListener('drain', function(){
  2.         //console.log('drain');
  3.         test.resume();     
  4.     });
  5.    
  6.    
  7.     test.addListener("data", function(chunk){
  8.         if( !response.write(chunk,'binary') ){
  9.            
  10.             test.pause();  
  11.         }
  12.         //response.write(chunk,'binary');
  13.         //console.log('data');
  14.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement