gitlab.com/evatix-go/core@v1.3.55/conditional/BytesTrueFunc.go (about)

     1  package conditional
     2  
     3  func BytesTrueFunc(
     4  	isTrue bool,
     5  	trueValueFunc func() []byte,
     6  ) []byte {
     7  	if !isTrue {
     8  		return []byte{}
     9  	}
    10  
    11  	return trueValueFunc()
    12  }