redux-utilities / redux-promise

FSA-compliant promise middleware for Redux.
MIT License
2.67k stars 134 forks source link

Throw the error #44

Open jridgewell opened 7 years ago

jridgewell commented 7 years ago

There's no need to return a Rejected Promise inside a #then block.

rkatic commented 7 years ago

Unfortunately this will not work with jQuery 2 promises, since it is not supporting throwing.

everdimension commented 7 years ago

@rkatic Can you please give an example of a scenario where Promise.reject will work correctly for jquery and throw will not?...