Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

redux-promise-middleware

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redux-promise-middleware - npm Package Compare versions

Comparing version 2.3.2 to 2.3.3

4

dist/index.js

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

type: type + '_' + PENDING
}, !!data && { payload: data }, !!meta && { meta: meta }));
}, !!data ? { payload: data } : {}, !!meta ? { meta: meta } : {}));

@@ -61,3 +61,3 @@ var isAction = function isAction(resolved) {

type: type + '_' + (isError ? REJECTED : FULFILLED)
}, !!meta && { meta: meta }, !!isError && { error: true });
}, !!meta ? { meta: meta } : {}, !!isError ? { error: true } : {});
};

@@ -64,0 +64,0 @@

{
"name": "redux-promise-middleware",
"version": "2.3.2",
"version": "2.3.3",
"description": "Redux middleware for handling promises",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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