Created
November 1, 2018 04:37
숫자를 k, M 등으로 축약해서 반환하기
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const nFormatter = (num, digits) => { | |
const si = [ | |
{ value: 1, symbol: '' }, | |
{ value: 1e3, symbol: 'k' }, | |
{ value: 1e6, symbol: 'M' }, | |
{ value: 1e9, symbol: 'G' }, | |
{ value: 1e12, symbol: 'T' }, | |
{ value: 1e15, symbol: 'P' }, | |
{ value: 1e18, symbol: 'E' } | |
] | |
const rx = /\.0+$|(\.[0-9]*[1-9])0+$/ | |
let i | |
for (i = si.length - 1; i > 0; i--) { | |
if (num >= si[i].value) { | |
break | |
} | |
} | |
return (num / si[i].value).toFixed(digits).replace(rx, '$1') + si[i].symbol | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment