1
2
// https://stackoverflow.com/questions/951021/what-is-the-javascript-version-of-sleep
export let sleep = async (ms) => (r) => setTimeout(r, ms);