Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 214 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 214 Bytes

Inflector

Easily way to pluralize and singularize swift strings.

println("item".pluralize())
println("items".singularize())

The code above will print "items" and "item", Is easy as that.