(s, indent string)
| 17 | var whitespaceRE = regexp.MustCompile(`\s+`) |
| 18 | |
| 19 | func Indent(s, indent string) string { |
| 20 | return text.Indent(s, indent) |
| 21 | } |
| 22 | |
| 23 | // Title returns a copy of the string s with all Unicode letters that begin words mapped to their Unicode title case. |
| 24 | func Title(s string) string { |
no outgoing calls
no test coverage detected