summaryrefslogtreecommitdiff
path: root/src/UI.js
blob: b27b10b514c93d22ee5df852ff16657c052af83c (plain)
1
2
3
4
5
6
7
8
9
export const _cheatLog = (a) => () => console.log(a);
export const _setInterval = (delay) => (f) => () => setInterval(f, delay);
export const _toJSON = (x) => JSON.stringify(x);
export const _reload = () => {
    window.location.reload();
};
export const _redirect = (url) => () => {
    window.location.href = url;
};