(tv scode.Bytes)
| 877 | } |
| 878 | |
| 879 | func FormatTypeValue(tv scode.Bytes) string { |
| 880 | f := NewFormatter(0, true, nil) |
| 881 | f.formatTypeValue(0, tv, false) |
| 882 | return f.builder.String() |
| 883 | } |
| 884 | |
| 885 | func quoteHexyString(s string) string { |
| 886 | if s == "" || len(s) > 4 { |