(str ...interface{})
| 81 | } |
| 82 | |
| 83 | func quote(str ...interface{}) string { |
| 84 | out := make([]string, 0, len(str)) |
| 85 | for _, s := range str { |
| 86 | if s != nil { |
| 87 | out = append(out, fmt.Sprintf("%q", strval(s))) |
| 88 | } |
| 89 | } |
| 90 | return strings.Join(out, " ") |
| 91 | } |
| 92 | |
| 93 | func squote(str ...interface{}) string { |
| 94 | out := make([]string, 0, len(str)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…