Skip to content

Commit

Permalink
불필요한 로그 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
po4tion committed Nov 28, 2024
1 parent 0c86568 commit 55ca310
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/numberToHangul/numberToHangul.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export function numberToHangul(input: number, options?: { spacing?: boolean }):

while (remainingDigits.length > 0) {
const currentPart = remainingDigits.slice(-4);
console.log('currentPart: ', currentPart);

koreanParts.unshift(`${numberToKoreanUpToThousand(Number(currentPart))}${HANGUL_DIGITS[placeIndex]}`);

Expand Down

0 comments on commit 55ca310

Please sign in to comment.