(items []string, sep string)
| 373 | } |
| 374 | |
| 375 | func joinStrings(items []string, sep string) string { |
| 376 | if len(items) == 0 { |
| 377 | return "" |
| 378 | } |
| 379 | result := items[0] |
| 380 | for _, s := range items[1:] { |
| 381 | result += sep + s |
| 382 | } |
| 383 | return result |
| 384 | } |
no outgoing calls
no test coverage detected