(b []byte)
| 2024 | } |
| 2025 | |
| 2026 | func optionalByte(b []byte) byte { |
| 2027 | var out byte |
| 2028 | if len(b) > 0 { |
| 2029 | return b[0] |
| 2030 | } |
| 2031 | return out |
| 2032 | } |
| 2033 | |
| 2034 | // EqualWith compare two with helpers for equality. |
| 2035 | func EqualWith(l, r u.JsonHelper) bool { |