gitlab.com/evatix-go/core@v1.3.55/coredata/stringslice/NonEmptyIf.go (about)

     1  package stringslice
     2  
     3  func NonEmptyIf(
     4  	isNonEmpty bool,
     5  	slice []string,
     6  ) []string {
     7  	if isNonEmpty {
     8  		return NonEmptySlice(slice)
     9  	}
    10  
    11  	return NonNullStrings(slice)
    12  }