buf resize impl

This commit is contained in:
r8zavetr8v 2024-05-16 01:26:18 +03:00
parent a664e4c898
commit fc158b92e1

View File

@ -110,6 +110,10 @@ func (r *Resource) MarshalJSON() ([]byte, error) {
var b bytes.Buffer
if cap := b.Cap(); cap < (len(dataRoot) + len(dataChild)) {
b.Grow((len(dataRoot) + len(dataChild)) - cap)
}
b.Write(dataRoot[:len(dataRoot)-1])
if len(dataChild) != 2 {