Some checks failed
🚀 Deploy - Demo / deployment (push) Has been cancelled
- 웹훅 URL을 https://admin.youtooplay.com/webhook로 변경 - Nginx 리버스 프록시 설정 파일 추가 - 배포 가이드 업데이트
7 lines
319 B
TypeScript
7 lines
319 B
TypeScript
// TODO: Try to implement this: https://twitter.com/fireship_dev/status/1565424801216311297
|
|
export const kFormatter = (num: number) => {
|
|
const regex = /\B(?=(\d{3})+(?!\d))/g
|
|
|
|
return Math.abs(num) > 9999 ? `${Math.sign(num) * +((Math.abs(num) / 1000).toFixed(1))}k` : Math.abs(num).toFixed(0).replace(regex, ',')
|
|
}
|