dreamerslab / node.inflection

A port of inflection-js to node.js module
MIT License
554 stars 46 forks source link

Edge Case: plural of "accommodation" #96

Open stephenfuqua opened 1 year ago

stephenfuqua commented 1 year ago

Steps to Reproduce

const inflection = require('inflection');
inflection.pluralize('accommodation');

Expected Outcome

"accommodations"

Actual Outcome

"accommodation"

Version

Originally noticed this in inflection 1.13.4. Upgraded to 2.0.1 and same behavior is seen.