(value: string)
| 17 | ); |
| 18 | |
| 19 | const decodeQueryValue = (value: string) => { |
| 20 | try { |
| 21 | return decodeURIComponent(value.replace(/\+/g, " ")); |
| 22 | } catch { |
| 23 | return value; |
| 24 | } |
| 25 | }; |
| 26 | |
| 27 | const getQueryString = (url: string) => { |
| 28 | const queryStart = url.indexOf("?"); |
no outgoing calls
no test coverage detected