redux-promise-middleware
redux-promise-middleware copied to clipboard
Enables simple, yet robust handling of async action creators in Redux
Results
2
redux-promise-middleware issues
Sort by
recently updated
recently updated
newest added
Given a configuration like this ```es6 createPromise({promiseTypeDelimiter: "", promiseTypeSuffixes: ['Loading', 'Success', 'Error']}), ``` One would except actions to look like `MyActionLoading` but instead it translates to `MyAction_Loading`
This fixes the issue #290 promiseTypeDelimiter now respect empty string `''` value instead of replacing it with the default `'_'`