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; };