fix: remove unused deps

This commit is contained in:
liyasthomas
2021-07-21 09:02:37 +05:30
parent f4ffb8e357
commit 982f467572
6 changed files with 6 additions and 899 deletions

View File

@@ -19,7 +19,7 @@ function getParamsInURL(url: string): { key: string; value: string }[] {
uriObj.searchParams.forEach((value, key) => {
result.push({ key, value })
})
} catch (_e) { }
} catch (_e) {}
return result
}