(name ...string)
| 12 | } |
| 13 | |
| 14 | func SafeConcatGenerateName(name ...string) string { |
| 15 | return SafeConcatNameMax(name, 53) + "-" |
| 16 | } |
| 17 | |
| 18 | func SafeConcatNameMax(name []string, max int) string { |
| 19 | fullPath := strings.Join(name, "-") |
nothing calls this directly
no test coverage detected