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()); }