chore: upgrade protobuf dependencies

This commit is contained in:
2022-01-02 23:38:41 +01:00
parent c1ec63fcc1
commit a4da40a414
9 changed files with 45 additions and 106 deletions

View File

@ -263,3 +263,8 @@ func (e *Encoder) Snapshot() encoderState {
func (e *Encoder) Reset(es encoderState) {
e.encoderState = es
}
// AppendString appends the escaped form of the input string to b.
func AppendString(b []byte, s string) []byte {
return appendString(b, s, false)
}