Remove BPA from Makefile
[icn.git] / cmd / bpa-operator / vendor / github.com / markbates / inflect / helpers.go
1 package inflect
2
3 //Helpers is a map of the helper names with its corresponding inflect function
4 var Helpers = map[string]interface{}{
5         "asciffy":             Asciify,
6         "camelize":            Camelize,
7         "camelize_down_first": CamelizeDownFirst,
8         "capitalize":          Capitalize,
9         "dasherize":           Dasherize,
10         "humanize":            Humanize,
11         "ordinalize":          Ordinalize,
12         "parameterize":        Parameterize,
13         "pluralize":           Pluralize,
14         "pluralize_with_size": PluralizeWithSize,
15         "singularize":         Singularize,
16         "tableize":            Tableize,
17         "typeify":             Typeify,
18         "underscore":          Underscore,
19 }