Get simply returns result and can be chained on function which returns StringManipulation interface
()
| 190 | // Get simply returns result and can be chained on function which |
| 191 | // returns StringManipulation interface |
| 192 | func (i *input) Get() string { |
| 193 | return getInput(*i) |
| 194 | } |
| 195 | |
| 196 | // KebabCase is variadic function that takes one Param slice of strings named rule and it returns passed string |
| 197 | // in kebab case form. Rule param helps to omit character you want to omit from string. By default special characters |
nothing calls this directly
no test coverage detected