Fixed
- Don't throw a
TypeError
if thematches()
method of an action creator is
called independently from the action creator object. Allows idioms such as
filter(actionCreator.matches)
without having to resort to
Function.prototype.bind
.
TypeError
if the matches()
method of an action creator isfilter(actionCreator.matches)
without having to resort toFunction.prototype.bind
.