File size: 259 Bytes
77d952e
 
 
 
 
 
 
4c8c6b4
1
2
3
4
5
6
7
8
9
get_window_url_params = """
    function() {
        const params = new URLSearchParams(window.location.search);
        const url_params = Object.fromEntries(params);
        console.log('url_params', url_params)
        return url_params;
        }
    """