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

redux-promise-mutex

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redux-promise-mutex - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

lib/index.js

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

return function (action) {
var uuid = String(action.uuid || action.name);
var uuid = String(action.uuid || action.name || '');
if (typeof action === 'function' && uuid) {

@@ -47,0 +47,0 @@ //如果记录了lock信息,中断action调用

{
"name": "redux-promise-mutex",
"version": "1.0.0",
"version": "1.0.1",
"description": "add mutex for redux-thunk",

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

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

return store => next => action => {
const uuid = String(action.uuid || action.name);
const uuid = String(action.uuid || action.name || '');
if (typeof action === 'function' && uuid) {

@@ -23,0 +23,0 @@ //如果记录了lock信息,中断action调用

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