X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Fbenchmarks-utils.js;h=6eed668bd16b33d9f7f6598ed2a680285d884e36;hb=refs%2Ftags%2Fv2.4.2;hp=c04162e1a617d704708b56496040640947e22171;hpb=548140e67db5a4d10e7712fc0830c196a3f81968;p=poolifier.git diff --git a/benchmarks/benchmarks-utils.js b/benchmarks/benchmarks-utils.js index c04162e1..6eed668b 100644 --- a/benchmarks/benchmarks-utils.js +++ b/benchmarks/benchmarks-utils.js @@ -7,7 +7,7 @@ async function runPoolifierTest (pool, { tasks, workerData }) { pool .execute(workerData) .then(() => { - executions++ + ++executions if (executions === tasks) { return resolve({ ok: 1 }) } @@ -62,9 +62,8 @@ function fibonacci (n) { function factorial (n) { if (n === 0) { return 1 - } else { - return factorial(n - 1) * n } + return factorial(n - 1) * n } function executeWorkerFunction (data) {