Bluesky app fork with some witchin' additions 馃挮
at cb7e2ab976d9e2e8e2d13356b79bba7e6870a9fd 9 lines 215 B view raw
1import {type I18n} from '@lingui/core' 2 3export const formatCount = (i18n: I18n, num: number) => { 4 return i18n.number(num, { 5 notation: 'compact', 6 maximumFractionDigits: 1, 7 roundingMode: 'trunc', 8 }) 9}