From 2ab3664e509a73b58ca65560cf18ce29b1173271 Mon Sep 17 00:00:00 2001 From: Aaron O'Mullan Date: Mon, 25 Oct 2021 18:51:17 +0200 Subject: bench(http): avoid obj destructuring for parity with std (#12528) Might close gap in benchmark graph between std & native --- cli/bench/deno_http_native.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli') diff --git a/cli/bench/deno_http_native.js b/cli/bench/deno_http_native.js index d68f8ea81..abb2d061f 100644 --- a/cli/bench/deno_http_native.js +++ b/cli/bench/deno_http_native.js @@ -11,8 +11,8 @@ const body = encoder.encode("Hello World"); for await (const conn of listener) { (async () => { const requests = Deno.serveHttp(conn); - for await (const { respondWith } of requests) { - respondWith(new Response(body)) + for await (const event of requests) { + event.respondWith(new Response(body)) .catch((e) => console.log(e)); } })(); -- cgit v1.2.3