0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

bench(http): avoid obj destructuring for parity with std (#12528)

Might close gap in benchmark graph between std & native
This commit is contained in:
Aaron O'Mullan 2021-10-25 18:51:17 +02:00 committed by GitHub
parent e39dace8cb
commit 2ab3664e50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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));
}
})();