From 2de2e0494720583c81b142d79eb22cbfcda3a30d Mon Sep 17 00:00:00 2001 From: Kris Powers <85710701+KrisPowers@users.noreply.github.com> Date: Tue, 12 May 2026 19:51:58 -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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/bench-logging.js b/benchmark/bench-logging.js index 6769b08..68d1c13 100644 --- a/benchmark/bench-logging.js +++ b/benchmark/bench-logging.js @@ -124,7 +124,7 @@ async function benchmarkLogging() { const timestampResult = await runner.run( 'Timestamp Formatting', async () => { - const timestamp = new Date().toISOString(); + void new Date().toISOString(); }, 100000 );