(sArr []string, sep, prefix string)
| 42 | } |
| 43 | |
| 44 | func StrSliceToString(sArr []string, sep, prefix string) string { |
| 45 | return prefix + " " + strings.Join(sArr, sep) |
| 46 | } |
| 47 | |
| 48 | func CheckElementOfSliceStr(arr []string, element string, prefix string, ifExt bool) bool { |
| 49 | if sliceKits.ContainsString(arr, element) { |
no outgoing calls
no test coverage detected