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

novux

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

novux - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "novux",
"version": "1.0.0",
"version": "1.0.1",
"description": "Easily update & reset redux state",

@@ -5,0 +5,0 @@ "repository": "https://github.com/neednova/novux",

@@ -14,3 +14,3 @@ import utils from './utils';

*/
const update = (reducer, tag, state) => ({
export const update = (reducer, tag, state) => ({
type: UPDATE,

@@ -29,3 +29,3 @@ reducer,

*/
const reset = (reducer, tag, state) => ({
export const reset = (reducer, tag, state) => ({
type: RESET,

@@ -43,3 +43,3 @@ reducer,

*/
const createReducer = (name, initialState) => (state = initialState, action) => {
export const createReducer = (name, initialState) => (state = initialState, action) => {
if (typeof name !== 'string') {

@@ -46,0 +46,0 @@ return new Error('Expected reducer name to be a string');

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