gitlab.com/evatix-go/core@v1.3.55/coredata/corejson/BytesToString.go (about) 1 package corejson 2 3 func BytesToString( 4 jsonBytes []byte, 5 ) string { 6 if len(jsonBytes) == 0 { 7 return "" 8 } 9 10 return string(jsonBytes) 11 } 12 13 func BytesToPrettyString( 14 jsonBytes []byte, 15 ) string { 16 if len(jsonBytes) == 0 { 17 return "" 18 } 19 20 rs := Result{ 21 Bytes: jsonBytes, 22 } 23 24 return rs.PrettyJsonString() 25 }