UNPKG

@orfeas126/box-ui-elements

Version:
10 lines (7 loc) 356 B
import { IntlShape } from 'react-intl'; const formatCount = (count: number, intl: IntlShape): string | string[] => { const shouldAbbreviate = count >= 10000; return shouldAbbreviate ? intl.formatNumber(count, { notation: 'compact' }) : intl.formatNumber(count); }; // eslint-disable-next-line import/prefer-default-export export { formatCount };