customer/pkg/validate/string.go

8 lines
115 B
Go
Raw Permalink Normal View History

2023-06-22 09:36:43 +00:00
package validate
import "strings"
func IsStringEmpty(text string) bool {
return strings.TrimSpace(text) == ""
}