(url, params)
| 237 | * @return {string} |
| 238 | */ |
| 239 | export function addParamsToUrl(url, params) { |
| 240 | return appendEncodedParamStringToUrl(url, serializeQueryString(params)); |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * Append query string fields and values to a url, only if the key does not |
no test coverage detected