oo-redux-utils
Advanced tools
Comparing version 1.2.2 to 1.2.3
@@ -52,3 +52,3 @@ "use strict"; | ||
var action = arguments.length > 1 ? arguments[1] : undefined; | ||
return action.type.getStateNamespace() === stateNamespace && (action.receivingComponentClass && action.receivingComponentClass === componentClass || !action.receivingComponentClass && action.type instanceof actionBaseClass) ? action.type.performActionAndReturnNewState(currentState) : currentState; | ||
return (action.receivingComponentClass && action.receivingComponentClass === componentClass || !action.receivingComponentClass && action.type instanceof actionBaseClass) && action.type.getStateNamespace() === stateNamespace ? action.type.performActionAndReturnNewState(currentState) : currentState; | ||
}; | ||
@@ -55,0 +55,0 @@ } |
{ | ||
"name": "oo-redux-utils", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"description": "Utility functions for Object-oriented Redux", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
20741