(values []string)
| 553 | } |
| 554 | |
| 555 | func sortedCopyStringSlice(values []string) []string { |
| 556 | if values == nil { |
| 557 | return []string{} |
| 558 | } |
| 559 | copied := append([]string{}, values...) |
| 560 | sort.Strings(copied) |
| 561 | return copied |
| 562 | } |
no outgoing calls
no test coverage detected