A Go port of the Rails Inflector.
package main
import (
"github.com/tzvetkoff-go/inflector"
)
func main() {
println(inflector.Pluralize("person")) // "people"
println(inflector.Singularize("men")) // "man"
}
The code is subject to the MIT license.