X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-client-pool%2Fhttpd-echo.js;h=53b8ad116592153f7bece55d296db77536e1241e;hb=b6a7bb07d6b1e44a4504fa283f2b4016bd19c39c;hp=cbfb8da7ccfd7869eb3b11a1492b748617810100;hpb=8ebe6c308dc1fc3202980126da043b2855d24780;p=poolifier.git diff --git a/examples/typescript/http-client-pool/httpd-echo.js b/examples/typescript/http-client-pool/httpd-echo.js index cbfb8da7..53b8ad11 100644 --- a/examples/typescript/http-client-pool/httpd-echo.js +++ b/examples/typescript/http-client-pool/httpd-echo.js @@ -7,7 +7,7 @@ server .on('request', (request, response) => { let body = [] request - .on('data', (chunk) => { + .on('data', chunk => { body.push(chunk) }) .on('end', () => {