UNPKG

redux-act

Version:

An opinionated lib to create actions and reducers for Redux

9 lines (7 loc) 207 B
import createAction from './createAction'; export default createAction('Batch', (...actions) => { if (actions.length === 1 && Array.isArray(actions[0])) { return actions[0]; } return actions; });