lbry-desktop/ui/util/notifications.js

3 lines
117 B
JavaScript

// @flow
export const buildUnseenCountStr = (unseenCount: number) => (unseenCount > 20 ? '20+' : `${unseenCount}`);