phanpy/src/utils/shorten-number.jsx

9 lines
171 B
React
Raw Normal View History

2024-08-13 10:26:23 +03:00
import { i18n } from '@lingui/core';
export default function shortenNumber(num) {
return i18n.number(num, {
notation: 'compact',
roundingMode: 'floor',
});
}