Skip to content

Commit

Permalink
ocd
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Feb 19, 2013
1 parent b1a0a20 commit 35c764f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib/node/response.js
Expand Up @@ -60,10 +60,18 @@ Response.prototype.destroy = function(err){
this.res.destroy(err);
};

/**
* Pause.
*/

Response.prototype.pause = function(){
this.res.pause();
};

/**
* Resume.
*/

Response.prototype.resume = function(){
this.res.resume();
};
Expand Down

0 comments on commit 35c764f

Please sign in to comment.