Socket
Socket
Sign inDemoInstall

redux-interactions

Package Overview
Dependencies
9
Maintainers
10
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.3.68 to 2.3.70

5

dist/src/selector.js

@@ -35,4 +35,9 @@ "use strict";

}
if (!_.has(state, this.mountPoint)) {
throw new TypeError(("Called @selector with invalid state object (no path '" + this.mountPoint + "'). ") +
"Perhaps a @selector method is calling another @selector method? Or the " +
"interaction isn't mounted at all.");
}
return scopedSelector.call.apply(scopedSelector, [this, _.get(state, this.mountPoint)].concat(args));
};
}

6

dist/test/unit/EntityCollection.js

@@ -51,3 +51,7 @@ "use strict";

it("doesn't mind if there are no entities", function () {
var state = {};
var state = {
entities: {
collection: undefined,
},
};
var transformed = instance.transformState(state);

@@ -54,0 +58,0 @@ expect(transformed).to.equal(state);

2

package.json
{
"name": "redux-interactions",
"version": "2.3.68",
"version": "2.3.70",
"description": "A streamlined approach to managing your Redux action creators and reducers.",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/convoyinc/redux-interactions",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc