numberToHangulMixed
주어진 숫자에 4자리 마다 바뀌는 한글의 숫자 단위를 붙여줍니다. 다양한 요구사항에 대응하도록 '만(萬)' 단위로 띄어쓰기를 지원합니다.
function numberToHangulMixed(input: number, options?: { spacing?: boolean }): string;
Examples
numberToHangulMixed(210_000); // '21만';
numberToHangulMixed(12_345); // '1만2,345';
numberToHangulMixed(123_456_780); // '1억2,345만6,780';
numberToHangulMixed(123_456_780, { spacing: true }); // '1억 2,345만 6,780';