()
| 5 | export default class URLHandler { |
| 6 | |
| 7 | static basicURL() { |
| 8 | const url_path = window.location.pathname.split('/').slice(0, -2).join('/'); |
| 9 | |
| 10 | return window.location.origin + (url_path.length ? url_path : ''); |
| 11 | } |
| 12 | |
| 13 | /** |
| 14 | * Read all URL parameters into a map. |