From 4e5bce7410e8b436e4d00d957b9cd31804c9f049 Mon Sep 17 00:00:00 2001 From: Kris Powers <85710701+KrisPowers@users.noreply.github.com> Date: Tue, 12 May 2026 19:52:05 -0400 Subject: [PATCH] Fix for Unused variable, import, function or class Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- benchmark/bench-throttle.js | 1 + 1 file changed, 1 insertion(+) diff --git a/benchmark/bench-throttle.js b/benchmark/bench-throttle.js index 05c81bf..058f949 100644 --- a/benchmark/bench-throttle.js +++ b/benchmark/bench-throttle.js @@ -134,6 +134,7 @@ async function benchmarkThrottle() { const burstWindow = 1000; const recent = timestamps.filter(t => t > Date.now() - burstWindow); const isBurst = recent.length > 5; + void isBurst; }, 50000 );