pluralize-fr
v1.0.1
Published
Plural form for nouns in French
Downloads
861
Readme
Pluralize-es
Finds the plural form of most french words. Many exceptions are covered.
Installation
$ npm install --save pluralize-fr
Usage
var plural = require('pluralize-fr');
plural('jambe');
//=> 'jambes'
plural('oeil');
//=> 'yeux'
API
plural(str)
str
Type: string
The noun to make plural.