1 2 3 4 5
export const after = (f, delay) => { const id = window.setTimeout(() => { f(id) }, delay) }