Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 82f42e734c50b34de31e8aff1e7ced248ab6e96f 10 lines 271 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 // @ts-expect-error - roundingMode not in the types 8 roundingMode: 'trunc', 9 }) 10}