From e11bf913f1ed0dca5fdc7361ae18d6dc5b9a11ab Mon Sep 17 00:00:00 2001 From: Uoc Tamika Date: Sun, 7 Jun 2026 04:39:26 +0000 Subject: [PATCH] add comment to ignoring specific thing --- src/stdio/printf.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stdio/printf.ts b/src/stdio/printf.ts index c4add3e..033aef7 100644 --- a/src/stdio/printf.ts +++ b/src/stdio/printf.ts @@ -35,7 +35,9 @@ function formatArg(arg: unknown, specifier: string): string { return typeof arg === 'number' ? arg.toString(2) : 'NaN'; case 'j': return JSON.stringify(arg); + /* v8 ignore next */ case '%': return '%'; + /* v8 ignore next */ default: return String(arg); } }