From 81e59a390d6f90d0ce94d6d937838871b4324bf2 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 16 Jun 2025 06:33:57 -0700 Subject: [PATCH] Remove unused variable. --- src/utils/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/index.ts b/src/utils/index.ts index dd7ebcb..26b66b6 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -17,8 +17,8 @@ export function stats (times: number[]) { const truncatedEnd = count - truncatedStart const truncatedCount = truncatedEnd - truncatedStart let min = Number.MAX_SAFE_INTEGER - let logarithms, max, median, rate, reciprocals, total - logarithms = max = median = rate = reciprocals = total = 0 + let logarithms, max, median, reciprocals, total + logarithms = max = median = reciprocals = total = 0 let truncatedMin = Number.MAX_SAFE_INTEGER let truncatedLogarithms, truncatedMax, truncatedReciprocals, truncatedTotal -- 2.47.3