package validate import "strings" func IsStringEmpty(text string) bool { return strings.TrimSpace(text) == "" }