aboutsummaryrefslogtreecommitdiff
path: root/bench/fetch/deno.js
diff options
context:
space:
mode:
Diffstat (limited to 'bench/fetch/deno.js')
-rw-r--r--bench/fetch/deno.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/fetch/deno.js b/bench/fetch/deno.js
index 929a478a0..3eef41698 100644
--- a/bench/fetch/deno.js
+++ b/bench/fetch/deno.js
@@ -7,7 +7,7 @@ bench(`fetch(https://example.com) x ${count}`, async () => {
for (let i = 0; i < requests.length; i++) {
requests[i] = fetch(`https://www.example.com/?cachebust=${i}`).then((r) =>
- r.text()
+ r.text(),
);
}