1
Fork 0
tildes-reextended/source/utilities/text.ts

19 lines
458 B
TypeScript
Raw Normal View History

2023-06-29 21:24:20 +00:00
/**
* Pluralize a word based on a count.
* @param count The number of things.
* @param singular The word in its singular form.
* @param plural Optionally the word in its plural form. If left undefined the
* returned string will be the singular form plus the letter "s".
*/
export function pluralize(
count: number,
singular: string,
plural?: string,
): string {
if (count === 1) {
return singular;
}
return plural ?? singular + "s";
}