use named imports
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/** converts window.location.search into object */
|
||||
|
||||
export default function parseQuery<T extends {}>(search: string = window.location.search): T {
|
||||
export function parseQuery<T extends {}>(search: string = window.location.search): T {
|
||||
const params: { [key: string]: string } = {};
|
||||
new URLSearchParams(search).forEach((value: string, key: string) => {
|
||||
params[key] = value;
|
||||
|
||||
Reference in New Issue
Block a user