phanpy/src/utils/shorten-number.jsx

8 lines
186 B
React
Raw Normal View History

const { locale } = Intl.NumberFormat().resolvedOptions();
2022-12-10 09:14:48 +00:00
export default function shortenNumber(num) {
return Intl.NumberFormat(locale, {
2022-12-10 09:14:48 +00:00
notation: 'compact',
}).format(num);
}