Spaces:
Runtime error
Runtime error
File size: 250 Bytes
57ea903 |
1 2 3 4 5 6 7 8 9 |
get_window_url_params = """
function(url_params) {
console.log(url_params);
const params = new URLSearchParams(window.location.search);
url_params = Object.fromEntries(params);
return url_params;
}
"""
|