Guest User

Untitled

a guest
Apr 25th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // Sends a message once a second 10 times
  2. var app = function(request) {
  3. return function(responder) {
  4. var i = 0;
  5. var w = responder(200, {});
  6.  
  7. var intervalId = serInterval(function(){
  8. w.write("Every second another message");
  9. if (++i == 10) {
  10. w.close();
  11. clearInterval(intervalId);
  12. }
  13. }, 1000);
  14. };
  15. }
Add Comment
Please, Sign In to add comment