Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
otnansirk committed Jul 3, 2024
1 parent daa5c62 commit 55981d4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/handler/capitalCase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export const capitalCase = (text: string): string => {
let isWordStart = true;

for (const char of text) {
console.log(char, "KRIS")
if (char === ' ' || char === '\n') {
result += char;
isWordStart = true;
Expand Down

0 comments on commit 55981d4

Please sign in to comment.