neallindsay

neallindsay

Joined 11 years ago, with 616 karma

About

const lockify = f => { let lock = Promise.resolve() return (...args) => { const result = lock.then(() => f(...args)) lock = result.catch(() => {}) return result.then(v => v) } }