Skip to content

Commit

Permalink
Style: 숫자 포맷팅 함수에 jsdoc 주석 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkSohyunee committed Feb 15, 2024
1 parent 6b13628 commit 5fd79a4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/lib/utils/numberFormatter.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
/**
* 숫자 형태를 단위에 맞게 변환해주는 포매팅 함수입니다.
- 만 미만: 축약 없이 컴마(,) 처리 ex. 1~9,999 (ko, en)
- 만 이상: 만 단위 ex. 1만, 35.5만, 510만... (ko)
- 만 이상: K 단위(소숫점 1자리) ex. 10K, 355.3K (en)
- 백만 이상: M 단위(소숫점 1자리) ex. 5.1M (en)
* @param {number} num 축약할 숫자입니다.
* @param {'ko' | 'en'} lang 적용할 숫자 국가 단위입니다.
* @returns {number} 단위에 맞게 변환된 숫자입니다.
*/

const numberFormatter = (num: number, lang: 'ko' | 'en') => {
const unit = 10000;

Expand Down

0 comments on commit 5fd79a4

Please sign in to comment.