Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. bindActionCreators(functionList, dispach){
  2. let result = {}
  3. for(f in functionList) {
  4. result[f.name] = dispach(f.call())
  5. }
  6.  
  7. return result;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement