Surround takes one param with which is used to surround user input and it can be chained on function which return StringManipulation interface.
(with string)
| 337 | // Surround takes one param with which is used to surround user input and it |
| 338 | // can be chained on function which return StringManipulation interface. |
| 339 | func (i *input) Surround(with string) string { |
| 340 | input := getInput(*i) |
| 341 | return with + input + with |
| 342 | } |
| 343 | |
| 344 | // Tease takes two params length and indicator and it shortens given string |
| 345 | // on passed length and adds indicator on end |
nothing calls this directly
no test coverage detected