dougmoscrop/dread-node

Support per-task configuration

Closed this issue · 0 comments

const retry = dread({ attempts: 5 })

const withDefault = retry(attempt => ... );
const withConfig = retry({ attempts: 2 }, attempt => {
});