Guest User

Untitled

a guest
Nov 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. getsome: [function*({ payload }, { call, put, select, all }){
  2. yield call request1;
  3. yield call request2;
  4. }, { type: 'takeLatest'}],
  5.  
  6. getsome: [function*({ payload }, { call, put, select, all }){
  7. yield all([call(request1), call(request2)]);
  8. }, { type: 'takeLatest'}],
Add Comment
Please, Sign In to add comment