rclone/vendor/github.com/pengsrc/go-shared/convert/string.go
2018-01-16 13:20:59 +00:00

11 lines
268 B
Go

package convert
// StringSliceWithConverter converts a list of string using the passed converter function
func StringSliceWithConverter(s []string, c func(string) string) []string {
out := []string{}
for _, i := range s {
out = append(out, c(i))
}
return out
}