This repository has no description
1export const pluralize = (label: string, n: number) => (`${label}${n === 1 ? "" : "s"}`);
1export const pluralize = (label: string, n: number) => (`${label}${n === 1 ? "" : "s"}`);