Base64EncodeBytes writes v as a base64 value in JSON string
(v []byte)
| 76 | |
| 77 | // Base64EncodeBytes writes v as a base64 value in JSON string |
| 78 | func (jv Value) Base64EncodeBytes(v []byte) { |
| 79 | encodeByteSlice(jv.w, (*jv.scratch)[:0], v) |
| 80 | } |
| 81 | |
| 82 | // Write writes v directly to the JSON document |
| 83 | func (jv Value) Write(v []byte) { |