| 83 | }; |
| 84 | |
| 85 | interface UrlQueryParams { |
| 86 | params: string; |
| 87 | key: string; |
| 88 | value: string; |
| 89 | } |
| 90 | |
| 91 | export function formUrlQuery({ params, key, value }: UrlQueryParams) { |
| 92 | const currentUrl = qs.parse(params); |
nothing calls this directly
no outgoing calls
no test coverage detected