diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2019-12-11 21:02:23 -0800 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-12-12 13:02:23 +0800 |
commit | d146d45861708bcf1879563a545a2c8b8f96bd80 (patch) | |
tree | d3b2f533dc9280cdda94eda938dc56ad6a8d318f /tools/node_http.js | |
parent | ef174883985d764d727002be004a113968922013 (diff) |
benchmark: align deno_http and node_http response (#3484)
Diffstat (limited to 'tools/node_http.js')
-rw-r--r-- | tools/node_http.js | 2 |
1 files changed, 1 insertions, 1 deletions
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); |