Returns the window location's search params as an object. Supports single-level nesting.
function getURLQueryParams()
// Example:
// URL: domain.com?param=hello&otherParam=world
getURLQueryParams() //=> { "param": "hello", "otherParam": "world" }
Returns the window location's search params as an object. Supports single-level nesting.
function getURLQueryParams()
// Example:
// URL: domain.com?param=hello&otherParam=world
getURLQueryParams() //=> { "param": "hello", "otherParam": "world" }