Files
solana/explorer/src/utils.ts

13 lines
323 B
TypeScript
Raw Normal View History

2020-03-16 15:17:51 +08:00
export function findGetParameter(parameterName: string): string | null {
let result = null,
tmp = [];
window.location.search
.substr(1)
.split("&")
.forEach(function(item) {
tmp = item.split("=");
if (tmp[0] === parameterName) result = decodeURIComponent(tmp[1]);
});
return result;
}