mirror of
https://github.com/go-gitea/gitea.git
synced 2024-12-28 02:58:07 +08:00
7 lines
132 B
Go
7 lines
132 B
Go
|
package bytes
|
||
|
|
||
|
// CloneBytes returns a deep copy of slice b.
|
||
|
func CloneBytes(b []byte) []byte {
|
||
|
return append([]byte(nil), b...)
|
||
|
}
|