bool
IsEmpty returns true if the current string is empty.
IsEmpty
func (s *Str) IsEmpty() bool
str.New("golang").IsEmpty() // false str.New("").IsEmpty() // true str.New(" ").IsEmpty() // false
← FirstWord IsJson →