From converts the input text to String and returns it
(data string)
| 18 | |
| 19 | // From converts the input text to String and returns it |
| 20 | func From(data string) String { |
| 21 | return String{source: data} |
| 22 | } |
| 23 | |
| 24 | // IsEmptyOrSpace returns true if the length of the string value is 0 after call strings.TrimSpace, or else returns false |
| 25 | func (s String) IsEmptyOrSpace() bool { |
no outgoing calls
searching dependent graphs…