ref: 27ef9a7e1f2589d1a0eeee4cd6d36d1926989cf2
dir: /internal/bufpool/bytes.go/
package bufpool
// Bytes returns the underlying byte slice that represents the current contents
// of the buffer. Modifying the returned slice modifies the Buffer itself.
func (buf *Buffer) Bytes() []byte {
return buf.buf
}