Convert slice of string to comma separated string
(str []string)
| 73 | |
| 74 | // Convert slice of string to comma separated string |
| 75 | func SliceToString(str []string) string { |
| 76 | return strings.Join(str, ", ") |
| 77 | } |
| 78 | |
| 79 | // based on https://github.com/watson/ci-info/blob/HEAD/index.js |
| 80 | func IsCI() bool { |
no outgoing calls