(path string)
| 326 | } |
| 327 | |
| 328 | func escapePathPreservingSlashes(path string) string { |
| 329 | return strings.ReplaceAll(url.PathEscape(path), "%2F", "/") |
| 330 | } |
| 331 | |
| 332 | // buildQueryString takes an input query string and |
| 333 | // performs replacements on each component, returning |
no test coverage detected