phanpy/src/utils/shorten-number.jsx
2023-07-23 14:09:39 +08:00

6 lines
172 B
JavaScript

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