Fix for AVATAR_JS-143, added pause/resume to http_parser

Reviewed-by: asquare
This commit is contained in:
jfdenise 2014-01-07 11:03:57 +01:00
parent 48ea061bcf
commit f90bedef97

View File

@ -189,4 +189,12 @@
}
return undefined;
}
HTTPParser.prototype.pause = function() {
this._parser.pause();
}
HTTPParser.prototype.resume = function() {
this._parser.resume();
}
});