EncodeJSONEmptyObject returns a byte array b with a byte to signify an empty JSON object.
(b []byte)
| 973 | |
| 974 | // EncodeJSONEmptyObject returns a byte array b with a byte to signify an empty JSON object. |
| 975 | func EncodeJSONEmptyObject(b []byte) []byte { |
| 976 | return append(b, escape, escapedTerm, jsonEmptyObject) |
| 977 | } |
| 978 | |
| 979 | // EncodeEmptyArray returns a byte array b with a byte to signify an empty array. |
| 980 | func EncodeEmptyArray(b []byte) []byte { |
no outgoing calls
no test coverage detected
searching dependent graphs…