Pracownia.Programowania/helpers/StringHelper.go

10 lines
115 B
Go
Raw Normal View History

2019-03-06 20:06:19 +01:00
package helpers
func IsEmpty(data string) bool {
if len(data) <= 0 {
return true
} else {
return false
}
}