gitlab.com/evatix-go/core@v1.3.55/converters/BytesPtrToString.go (about)

     1  package converters
     2  
     3  func BytesPtrToString(
     4  	rawBytes *[]byte,
     5  ) string {
     6  	if rawBytes == nil || len(*rawBytes) == 0 {
     7  		return ""
     8  	}
     9  
    10  	return string(*rawBytes)
    11  }