summaryrefslogtreecommitdiff
path: root/benchmark/process/next-tick-exec.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/process/next-tick-exec.js')
-rw-r--r--benchmark/process/next-tick-exec.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/benchmark/process/next-tick-exec.js b/benchmark/process/next-tick-exec.js
index d00ee017de..936b253bfa 100644
--- a/benchmark/process/next-tick-exec.js
+++ b/benchmark/process/next-tick-exec.js
@@ -5,13 +5,14 @@ const bench = common.createBenchmark(main, {
});
function main({ n }) {
-
- bench.start();
- for (var i = 0; i < n; i++) {
- process.nextTick(onNextTick, i);
- }
function onNextTick(i) {
if (i + 1 === n)
bench.end(n);
}
+
+ for (var i = 0; i < n; i++) {
+ process.nextTick(onNextTick, i);
+ }
+
+ bench.start();
}