mirror of
https://github.com/documenso/documenso.git
synced 2025-11-11 04:52:41 +10:00
6 lines
202 B
TypeScript
6 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}`;
|
|
}
|