chore: upgrade dependencies

This commit is contained in:
2023-10-15 11:34:50 +02:00
parent fb20ef0d06
commit f960fcc768
21 changed files with 650 additions and 422 deletions

View File

@ -42,6 +42,11 @@ func (b *Buffer) AppendByte(v byte) {
b.bs = append(b.bs, v)
}
// AppendBytes writes a single byte to the Buffer.
func (b *Buffer) AppendBytes(v []byte) {
b.bs = append(b.bs, v...)
}
// AppendString writes a string to the Buffer.
func (b *Buffer) AppendString(s string) {
b.bs = append(b.bs, s...)