Socket
Socket
Sign inDemoInstall

redux-state-branch

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redux-state-branch - npm Package Compare versions

Comparing version 0.0.44 to 0.0.45

2

dist/index.d.ts

@@ -123,3 +123,3 @@ interface AnyAction<T = any> {

defaultItem: Partial<ItemT>;
reducer: (state: BranchStateT | undefined, _action: AnyAction<any>) => BranchStateT;
reducer: (_state: any, _action: AnyAction<any>) => BranchStateT;
defaultState: BranchStateT;

@@ -126,0 +126,0 @@ action: {

@@ -141,4 +141,5 @@ "use strict";

var defaultSelectors = exports.selectors({ name: name });
var reducer = function (state, _action) {
if (state === void 0) { state = defaultState; }
var reducer = function (_state, _action) {
if (_state === void 0) { _state = defaultState; }
var state = _state;
var action = _action;

@@ -145,0 +146,0 @@ var items = ensureArray(action.items);

{
"name": "redux-state-branch",
"version": "0.0.44",
"version": "0.0.45",
"private": false,

@@ -5,0 +5,0 @@ "description": "A redux wrapper for sane people.",

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