redux-multi icon indicating copy to clipboard operation
redux-multi copied to clipboard

[question] What is the point?

Open reverofevil opened this issue 7 years ago • 5 comments

Currently the library just lets to write

dispatch(x);
dispatch(y);

as

dispatch([x, y]);

But I don't see why do I need a library for that. Even Promise.all is not a reason for another library. If this middleware have sent a store update event after all the updates once, it would make sense, but (surprisingly) it doesn't. So, what is the point?

reverofevil avatar Dec 11 '16 02:12 reverofevil