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

@wordpress/redux-routine

Package Overview
Dependencies
Maintainers
25
Versions
160
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wordpress/redux-routine - npm Package Compare versions

Comparing version

to
4.13.0

4

build-module/is-action.js
/**
* External dependencies
*/
import { isPlainObject, isString } from 'lodash';
import { isPlainObject } from 'lodash';
/* eslint-disable jsdoc/valid-types */

@@ -16,3 +16,3 @@

export function isAction(object) {
return isPlainObject(object) && isString(object.type);
return isPlainObject(object) && typeof object.type === 'string';
}

@@ -19,0 +19,0 @@ /**

@@ -25,3 +25,3 @@ "use strict";

function isAction(object) {
return (0, _lodash.isPlainObject)(object) && (0, _lodash.isString)(object.type);
return (0, _lodash.isPlainObject)(object) && typeof object.type === 'string';
}

@@ -28,0 +28,0 @@ /**

@@ -5,2 +5,4 @@ <!-- Learn how to maintain this file at https://github.com/WordPress/gutenberg/tree/HEAD/packages#maintaining-changelogs. -->

## 4.13.0 (2022-07-13)
## 4.12.0 (2022-06-29)

@@ -7,0 +9,0 @@

{
"name": "@wordpress/redux-routine",
"version": "4.12.0",
"version": "4.13.0",
"description": "Redux middleware for generator coroutines.",

@@ -43,3 +43,3 @@ "author": "The WordPress Contributors",

},
"gitHead": "a80eeb62ec7cb1418b9915c277e084a29d6665e3"
"gitHead": "9d9d33bbdf317a4381b8ca1713e43bb50df653b3"
}
/**
* External dependencies
*/
import { isPlainObject, isString } from 'lodash';
import { isPlainObject } from 'lodash';

@@ -15,3 +15,3 @@ /* eslint-disable jsdoc/valid-types */

export function isAction( object ) {
return isPlainObject( object ) && isString( object.type );
return isPlainObject( object ) && typeof object.type === 'string';
}

@@ -18,0 +18,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet