From 26d0e80f9197f303a64998d1ffc13e333cbe43f8 Mon Sep 17 00:00:00 2001 From: flx-sta <50131232+flx-sta@users.noreply.github.com> Date: Thu, 19 Sep 2024 10:20:25 -0700 Subject: [PATCH] remove: console.log from utils.camelCaseToKebabCase() --- src/utils.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 989d1ec08f3..ff6c6ee63ab 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -647,6 +647,5 @@ export function animationFileName(move: Moves): string { * @source {@link https://stackoverflow.com/a/67243723/} */ export function camelCaseToKebabCase(str: string): string { - console.log("str:", str); return str.replace(/[A-Z]+(?![a-z])|[A-Z]/g, (s, o) => (o ? "-" : "") + s.toLowerCase()); }