()
| 1 | import qs from 'query-string'; |
| 2 | |
| 3 | export function getSearchObj() { |
| 4 | const search = typeof window !== 'undefined' && window.location.search; |
| 5 | const query = qs.parse(search); |
| 6 | |
| 7 | return query || {}; |
| 8 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…