UNPKG

radioactive-state

Version:
12 lines (11 loc) 253 B
// schedule the callback (cb) to be run asynchronously only once const schedule = (cb) => { if (!cb.scheduled) { cb.scheduled = true setTimeout(() => { cb() cb.scheduled = false }, 0) } } module.exports = schedule