Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 348 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 348 Bytes

Pluralize-fr

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.