Skip to content

Commit

Permalink
2205312346
Browse files Browse the repository at this point in the history
  • Loading branch information
indiciumx committed Jun 1, 2022
1 parent b020e99 commit ef2aa36
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/common/queryparams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ export function getQueryParams(querystring: string):{ [key: string]: string } {
.substr(1)
.split('&')
.forEach((q: string) => {
q.replace(/\+/g, ' ');
console.log(q);
const item = q.split('=');
queryParams[item[0]] = decodeURI(item[1]);
});
Expand Down

0 comments on commit ef2aa36

Please sign in to comment.