gitlab.com/evatix-go/core@v1.3.55/coreutils/stringutil/IsEmptyOrWhitespacePtr.go (about)

     1  package stringutil
     2  
     3  func IsEmptyOrWhitespacePtr(stringPtr *string) bool {
     4  	return stringPtr == nil || IsEmptyOrWhitespace(*stringPtr)
     5  }