From cce9c4fff33055ea4654ec498d4ee9d109f51854 Mon Sep 17 00:00:00 2001 From: JSer Date: Mon, 19 Feb 2024 17:48:47 +0900 Subject: [PATCH] Update codeToShakuHtml.ts --- packages/shaku-code-annotate-shiki/src/codeToShakuHtml.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/shaku-code-annotate-shiki/src/codeToShakuHtml.ts b/packages/shaku-code-annotate-shiki/src/codeToShakuHtml.ts index f4182d3..031db52 100644 --- a/packages/shaku-code-annotate-shiki/src/codeToShakuHtml.ts +++ b/packages/shaku-code-annotate-shiki/src/codeToShakuHtml.ts @@ -759,7 +759,6 @@ function assertsNever(data: never) { } function getLeadingSpaceCount(str: string) { - console.log("getLeadingSpaceCount", str); for (let i = 0; i < str.length; i++) { if (!/\s/.test(str[i])) { return i;