blob: 07f7e9577475da54633a2bddb6f84146750dfcbc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
const formatter = new Intl.NumberFormat('en-US', {
notation: 'compact',
maximumFractionDigits: 1,
roundingMode: 'trunc',
})
export function prettyNumber(number: number) {
return formatter.format(number)
}
|