New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

oo-redux-utils

Package Overview
Dependencies
Maintainers
1
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oo-redux-utils - npm Package Compare versions

Comparing version 1.2.2 to 1.2.3

2

lib/OOReduxUtils.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc