(s string)
| 554 | } |
| 555 | |
| 556 | func shellQuote(s string) string { |
| 557 | return "'" + strings.ReplaceAll(s, "'", `'"'"'`) + "'" |
| 558 | } |
| 559 | |
| 560 | func cloneHeaders(headers []header) []header { |
| 561 | cp := make([]header, len(headers)) |
no outgoing calls
no test coverage detected