(s: string)
| 54 | const a = /\+/g; // Regex for replacing addition symbol with a space |
| 55 | const r = /([^&;=]+)=?([^&;]*)/g; |
| 56 | const d = (s: string) => decodeURIComponent(s.replace(a, ' ')); |
| 57 | const q = window.location.hash.substring(1); |
| 58 | |
| 59 | let e = r.exec(q); |
no test coverage detected