New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-reducer-store

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-reducer-store - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

5

dist/index.cjs.js

@@ -53,6 +53,7 @@ 'use strict';

function wrapDispatch(dispatch) {
return function (action) {
function logAndDispatch(action) {
console.log('Action: ', action);
return dispatch(action);
};
}
return logAndDispatch;
}

@@ -59,0 +60,0 @@

@@ -46,6 +46,7 @@ import React, { createContext, useReducer, useEffect, useContext, useMemo } from 'react';

function wrapDispatch(dispatch) {
return function (action) {
function logAndDispatch(action) {
console.log('Action: ', action);
return dispatch(action);
};
}
return logAndDispatch;
}

@@ -52,0 +53,0 @@

2

package.json
{
"name": "react-reducer-store",
"version": "2.0.1",
"version": "2.0.2",
"main": "dist/index.cjs.js",

@@ -5,0 +5,0 @@ "module": "dist/index.esm.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