Socket
Socket
Sign inDemoInstall

redux-devtools-instrument

Package Overview
Dependencies
2
Maintainers
2
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.0 to 1.1.1

2

lib/instrument.js

@@ -127,3 +127,3 @@ 'use strict';

// if we know nothing could have changed.
if (!computedStates || minInvalidatedStateIndex >= computedStates.length && computedStates.length === stagedActionIds.length) {
if (!computedStates || minInvalidatedStateIndex === -1 || minInvalidatedStateIndex >= computedStates.length && computedStates.length === stagedActionIds.length) {
return computedStates;

@@ -130,0 +130,0 @@ }

{
"name": "redux-devtools-instrument",
"version": "1.1.0",
"version": "1.1.1",
"description": "Redux DevTools instrumentation",

@@ -5,0 +5,0 @@ "main": "lib/instrument.js",

@@ -119,3 +119,3 @@ import difference from 'lodash/difference';

if (
!computedStates ||
!computedStates || minInvalidatedStateIndex === -1 ||
(minInvalidatedStateIndex >= computedStates.length &&

@@ -122,0 +122,0 @@ computedStates.length === stagedActionIds.length)

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