From fdadbfbcefbe06484ef782c261706b46e1bd3d89 Mon Sep 17 00:00:00 2001 From: Kris Powers <85710701+KrisPowers@users.noreply.github.com> Date: Tue, 12 May 2026 19:52:19 -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-routing.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/bench-routing.js b/benchmark/bench-routing.js index 2105db4..bd7ea8a 100644 --- a/benchmark/bench-routing.js +++ b/benchmark/bench-routing.js @@ -102,7 +102,7 @@ async function benchmarkRouting() { async () => { const route = '/users/:id'; const path = '/users/123'; - const params = extractParams(route, path); + extractParams(route, path); }, 50000 );