phanpy/src/utils/shorten-number.jsx

6 lines
172 B
React
Raw Normal View History

const { locale } = Intl.NumberFormat().resolvedOptions();
2023-07-23 06:09:39 +00:00
const shortenNumber = Intl.NumberFormat(locale, {
notation: 'compact',
}).format;
export default shortenNumber;