libs5-go/utils/bytes.go

8 lines
109 B
Go

package utils
import "bytes"
func ConcatBytes(slices ...[]byte) []byte {
return bytes.Join(slices, nil)
}