X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=examples%2Ftypescript%2Fhttp-client-pool%2Fhttpd-echo.js;h=cbfb8da7ccfd7869eb3b11a1492b748617810100;hb=b4c2a50df77a5f3110d228436ce9f3008cbd8297;hp=53b8ad116592153f7bece55d296db77536e1241e;hpb=5ba0cd3c9bdb6479399aa77f45321ac72183f135;p=poolifier.git diff --git a/examples/typescript/http-client-pool/httpd-echo.js b/examples/typescript/http-client-pool/httpd-echo.js index 53b8ad11..cbfb8da7 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', () => {