/**
* Pluralize a word based on the count.
*
* @paramword - The word to pluralize.
* @paramcount - The count of the word.
* @returns The pluralized word.
*/exportfunctionpluralize(word, count) {
return count === 1 ? word : `${word}s`;
}
//# sourceMappingURL=pluralize.js.map