Package Exports
- js-inflector
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (js-inflector) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
js-inflector
Word magic.Quick Start
```node var inflector = require('js-inflector'); ```var inflect = inflector.start();
Examples
```node var someValue = 'tree'; ``` Modify word state: ```node var plural = inflect(someValue, 'plural'); //--> trees ```var capital = inflect(someValue, 'capital');
//--> Tree
Modify multiple word states at once:
var pluralAndCapital = inflect(someValue, ['capital', 'plural']);
//--> Trees
Set a group state:
inflector.group({
'properPlural': ['capital', 'plural']
});
With a group state:
var pluralAndCapital = inflect(someValue, 'properPlural');
//--> Trees