plurals / pluralize

Pluralize or singularize any word based on a count
MIT License
2.14k stars 180 forks source link

Exceptions for 'data' and 'agenda'. #145

Open intercaetera opened 4 years ago

intercaetera commented 4 years ago

It's quite common in our environment to be using these words and overwhelmingly the English grammar rules place them in the same category of uncountable nouns as advice, information and furniture (rather than the now very dated plurals of the words datum and agendum).

pluralize only chooses the latter usage:

console.log(pluralize.isPlural('data'));
// => true

console.log(pluralize.isPlural('agenda'));
// => true

Should we consider changing the rules for these words?