mirror of
https://github.com/documenso/documenso
synced 2026-04-21 21:37:18 +00:00
5 lines
202 B
TypeScript
5 lines
202 B
TypeScript
export function formatFolderCount(count: number, singular: string, plural?: string): string {
|
|
const itemLabel = count === 1 ? singular : plural || `${singular}s`;
|
|
|
|
return `${count} ${itemLabel}`;
|
|
}
|