Skip to content
This repository has been archived by the owner on Mar 30, 2018. It is now read-only.

Latest commit

 

History

History
25 lines (16 loc) · 434 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 434 Bytes

String.Inflector

Extends the String native with inflector methods, like pluralize and singularize.

Screenshot

How to Use

Pluralize

#JS
"cookie".pluralize(); // "cookies"

Singularize

#JS
"databases".singularize(); // "database"

isSingular and isPlural

#JS
"tools".isSingular(); // false
"tools".isPlural();   // true