gitlab.com/evatix-go/core@v1.3.55/bytetype/String.go (about)

     1  package bytetype
     2  
     3  func String(rawBytes []byte) string {
     4  	if len(rawBytes) == 0 {
     5  		return ""
     6  	}
     7  
     8  	return string(rawBytes)
     9  }