summaryrefslogtreecommitdiff
path: root/cli/bench/console.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bench/console.js')
-rw-r--r--cli/bench/console.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/cli/bench/console.js b/cli/bench/console.js
index b1873953c..1e0ebb37a 100644
--- a/cli/bench/console.js
+++ b/cli/bench/console.js
@@ -1,8 +1,3 @@
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
const count = 100000;
-
-const start = Date.now();
for (let i = 0; i < count; i++) console.log("Hello World");
-const elapsed = Date.now() - start;
-const rate = Math.floor(count / (elapsed / 1000));
-console.log(`time ${elapsed} ms rate ${rate}`);