# IsEmpty bool

IsEmpty returns true if the current string is empty.

# Signature

func (s *Str) IsEmpty() bool

# Examples

str.New("golang").IsEmpty()
// false

str.New("").IsEmpty()
// true

str.New("   ").IsEmpty()
// false