How redux Saga helps make asynchronous flow easier and what role does Generators have here ?
Sigiloso
Generators are functions that can be used to start and pause a function whenever required, and we can get multiple return values using yield. In reduxsaga yield is a built in function, which allows use of generator function sequentially. Redux saga has helper function for creating asynchronus actions.