phanpy/src/utils/shorten-number.jsx

7 lines
197 B
React
Raw Normal View History

const { locale } = Intl.NumberFormat().resolvedOptions();
2023-07-23 09:09:39 +03:00
const shortenNumber = Intl.NumberFormat(locale, {
notation: 'compact',
2024-05-10 07:11:57 +03:00
roundingMode: 'floor',
2023-07-23 09:09:39 +03:00
}).format;
export default shortenNumber;