Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
feat(ofType): Better support for redux-actions (#348)
The actionCreators you make with redux-actions implement their own toString, which means you don't have to keep track of action types at all. Before this commit, you need to: ``` ofType(myActionCreator.toString()) ``` In order to get this to work as expected. As of this commit, you can: ``` ofType(myActionCreator) ```
- Loading branch information
1 parent
579bd06
commit c4d0ccf
Showing
2 changed files
with
72 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters