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 1.1.0 to 1.1.1

2

dist/index.cjs.js

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

function Store(props) {
var initialState = props.rootReducer(props.initialValue, {
var initialState = props.rootReducer(props.initialValue || {}, {
type: '__INIT__'

@@ -54,0 +54,0 @@ });

@@ -44,3 +44,3 @@ import React, { createContext, useReducer, useContext } from 'react';

function Store(props) {
var initialState = props.rootReducer(props.initialValue, {
var initialState = props.rootReducer(props.initialValue || {}, {
type: '__INIT__'

@@ -47,0 +47,0 @@ });

{
"name": "react-reducer-store",
"version": "1.1.0",
"version": "1.1.1",
"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