UNPKG

@skazka/aws

Version:
8 lines (5 loc) 200 B
const retry = require('./retry'); const retries = (handlers, options) => async (...args) => ( Promise.all(handlers.map((handler) => retry(handler, options)(...args))) ); module.exports = retries;