From d146d45861708bcf1879563a545a2c8b8f96bd80 Mon Sep 17 00:00:00 2001 From: "Kevin (Kun) \"Kassimo\" Qian" Date: Wed, 11 Dec 2019 21:02:23 -0800 Subject: benchmark: align deno_http and node_http response (#3484) --- tools/node_http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/node_http.js b/tools/node_http.js index 2439cfc43..5587f6c3c 100644 --- a/tools/node_http.js +++ b/tools/node_http.js @@ -4,6 +4,6 @@ const port = process.argv[2] || "4544"; console.log("port", port); http .Server((req, res) => { - res.end("Hello World\n"); + res.end("Hello World"); }) .listen(port); -- cgit v1.2.3