Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
oscepal
/
playground
like
0
Runtime error
App
Files
Files
Community
c9e1876
playground
/
js.py
Francesco
added backend (redis)
57ea903
over 1 year ago
raw
Copy download link
history
blame
250 Bytes
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;
}
"""