Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. export const enableBatch = (reducer) => (state, action) => {
  2. return Array.isArray(action)
  3. ? action.reduce(reducer, state)
  4. : reducer(state, action);
  5. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement