cream-js 0.1.0

A lightweight compiler for modern web applications.
1
2
3
4
5
6
function utilQueryParams() {
    const url = new URL(window.location.href);
    const queryParams = new URLSearchParams(url.search);
    return Object.fromEntries(queryParams);
}
export {utilQueryParams}