This repository has no description
0

Configure Feed

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

core / ogre / src / lib / pluralize.ts
90 B 1 lines
1export const pluralize = (label: string, n: number) => (`${label}${n === 1 ? "" : "s"}`);