gitlab.com/evatix-go/core@v1.3.55/internal/strutilinternal/IsNullOrEmptyOrWhitespace.go (about) 1 package strutilinternal 2 3 func IsNullOrEmptyOrWhitespace(stringPtr *string) bool { 4 return stringPtr == nil || IsEmptyOrWhitespace(*stringPtr) 5 }