mirror of https://github.com/docker/cli.git
12 lines
213 B
Go
12 lines
213 B
Go
|
package clone
|
||
|
|
||
|
// SliceOfString deep copy a slice of strings
|
||
|
func SliceOfString(source []string) []string {
|
||
|
if source == nil {
|
||
|
return nil
|
||
|
}
|
||
|
res := make([]string, len(source))
|
||
|
copy(res, source)
|
||
|
return res
|
||
|
}
|