From 82238ee83e4148f2132025ed168ab726a5b7d74a Mon Sep 17 00:00:00 2001 From: Kris Powers <85710701+KrisPowers@users.noreply.github.com> Date: Tue, 12 May 2026 19:51:42 -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-logging.js | 1 + 1 file changed, 1 insertion(+) diff --git a/benchmark/bench-logging.js b/benchmark/bench-logging.js index 6769b08..b469a47 100644 --- a/benchmark/bench-logging.js +++ b/benchmark/bench-logging.js @@ -139,6 +139,7 @@ async function benchmarkLogging() { await Promise.resolve(); const end = Date.now(); const responseTime = end - start; + void responseTime; }, 50000 );