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

redux-actions-helper

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redux-actions-helper - npm Package Compare versions

Comparing version 0.0.23 to 0.0.24

6

dist/createAction.js

@@ -62,2 +62,8 @@ 'use strict';

creator.toString = (0, _createActionPrefix.getActionName)(actionName);
Object.defineProperties(creator, {
name: {
value: actionName,
writable: false
}
});
Object.assign(creator, multiActions);

@@ -64,0 +70,0 @@ return creator;

2

package.json
{
"name": "redux-actions-helper",
"version": "0.0.23",
"version": "0.0.24",
"description": "",

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

@@ -38,2 +38,8 @@ import isFunction from 'lodash/isFunction'

creator.toString = getActionName(actionName)
Object.defineProperties(creator, {
name: {
value: actionName,
writable: false,
}
})
Object.assign(creator,multiActions)

@@ -40,0 +46,0 @@ return creator;

@@ -65,8 +65,4 @@ export interface IBaseAction {

export function handleActions<State>(
reducerMap: IReducerMap<State, {}>,
initialState: State,
): Reducer<State, {}>
export function handleActions<State, Payload>(
export function handleActions<State, Payload={}>(
reducerMap: IReducerMap<State, Payload>,

@@ -76,11 +72,5 @@ initialState: State,

export function linstenActions<State>(
reducerMapListener: () => IReducerMap<State, {}>,
initialState: State,
): Reducer<State, {}>
export function linstenActions<State, Payload>(
export function linstenActions<State, Payload={}>(
reducerMapListener: () => IReducerMap<State, Payload>,
initialState: State,
): Reducer<State, Payload>
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