EncodeJSONEmptyObject returns a byte array b with a byte to signify an empty JSON object.
(b []byte)
| 507 | |
| 508 | // EncodeJSONEmptyObject returns a byte array b with a byte to signify an empty JSON object. |
| 509 | func EncodeJSONEmptyObject(b []byte) []byte { |
| 510 | return append(b, escape, escapedTerm, jsonEmptyObject) |
| 511 | } |
| 512 | |
| 513 | // EncodeNullAscending encodes a NULL value. The encodes bytes are appended to the |
| 514 | // supplied buffer and the final buffer is returned. The encoded value for a |
no outgoing calls
no test coverage detected