10 lines
115 B
Go
10 lines
115 B
Go
package helpers
|
|
|
|
func IsEmpty(data string) bool {
|
|
if len(data) <= 0 {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|