EncodeJSONEmptyObject returns a byte array b with a byte to signify an empty JSON object.
(b []byte)
| 732 | |
| 733 | // EncodeJSONEmptyObject returns a byte array b with a byte to signify an empty JSON object. |
| 734 | func EncodeJSONEmptyObject(b []byte) []byte { |
| 735 | return append(b, escape, escapedTerm, jsonEmptyObject) |
| 736 | } |
| 737 | |
| 738 | // EncodeStringDescending is the descending version of EncodeStringAscending. |
| 739 | func EncodeStringDescending(b []byte, s string) []byte { |
no outgoing calls
no test coverage detected
searching dependent graphs…