Socket
Socket
Sign inDemoInstall

@eknkc/dux

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eknkc/dux - npm Package Compare versions

Comparing version 3.0.6 to 3.0.7

4

build.js

@@ -145,5 +145,7 @@ 'use strict';

var nilAction = createAction("NIL")();
function scopeReducer(scope, reducer) {
return function (state, action) {
if (!action || !action.meta || action.meta.scope !== scope) return state;
if (!action || !action.meta || action.meta.scope !== scope) return reducer(state, nilAction);

@@ -150,0 +152,0 @@ return reducer(state, action);

@@ -100,6 +100,8 @@ import Immutable from 'seamless-immutable'

const nilAction = createAction("NIL")();
export function scopeReducer(scope, reducer) {
return (state, action) => {
if (!action || !action.meta || action.meta.scope !== scope)
return state;
return reducer(state, nilAction);

@@ -106,0 +108,0 @@ return reducer(state, action);

{
"name": "@eknkc/dux",
"version": "3.0.6",
"version": "3.0.7",
"description": "Redux helpers",

@@ -5,0 +5,0 @@ "main": "build.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