0.0.3 β’ Published 7 years ago
just-pluralize v0.0.3
just-pluralize
A simple singularized tool for all your pluralization problems.
All you have to do is install the package, import the 'pluralize' method and you are ready to get going.
Install
$ npm i just-pluralizeImport
import { pluralize } from 'just-pluralize';Usage
pluralize('son', 1) // -> 'son' πΆπ»
pluralize('dog', 3) // -> 'dogs' π π π
pluralize('candy', 6, 'candies') // -> 'candies' π¬ π¬ π¬ π¬ π¬ π¬Props
| Name | Type | Description |
|---|---|---|
| singular word(required) | string | This the word that you want to pluralize |
| count(optional) | number | The count on which the word would be pluralized |
| plural word(optional) | string | This word must be passed in case the plural word is different from the passed singular word |