[minor] Indentation fix

This commit is contained in:
Marak Squires 2011-10-25 06:25:15 -07:00
parent 63ac925260
commit 9e630daf81

View File

@ -218,14 +218,13 @@ HttpProxy.prototype.proxyRequest = function (req, res, buffer) {
return;
}
function ondata(chunk) {
if (res.writable) {
if (false === res.write(chunk) && response.pause) {
response.pause();
}
if (res.writable) {
if (false === res.write(chunk) && response.pause) {
response.pause();
}
}
}
response.on('data', ondata);