phanpy/src/utils/shorten-number.jsx
Lim Chee Aun b02cae4967 Try use more system locale
Hopefully locale doesn't change half way
2023-07-08 13:43:25 +08:00

7 lines
186 B
JavaScript

const { locale } = Intl.NumberFormat().resolvedOptions();
export default function shortenNumber(num) {
return Intl.NumberFormat(locale, {
notation: 'compact',
}).format(num);
}