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

@wordpress/redux-routine

Package Overview
Dependencies
Maintainers
15
Versions
153
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 3.9.0 to 3.9.1-rc.0

5

package.json
{
"name": "@wordpress/redux-routine",
"version": "3.9.0",
"version": "3.9.1-rc.0",
"description": "Redux middleware for generator coroutines.",

@@ -9,2 +9,3 @@ "author": "The WordPress Contributors",

"wordpress",
"gutenberg",
"redux",

@@ -36,3 +37,3 @@ "middleware",

},
"gitHead": "c7c76437c2c475a8bb4152dafe6dbdd65ee9e4ab"
"gitHead": "b68941a77fc6a19657b1c94a481849ec11984865"
}

2

src/test/is-action.js

@@ -6,3 +6,3 @@ /**

const nonActions = [ null, [], 42, 'foo', function() {}, { foo: 'bar' } ];
const nonActions = [ null, [], 42, 'foo', () => {}, { foo: 'bar' } ];
const validAction = { type: 'winner' };

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

@@ -26,3 +26,3 @@ /**

it( 'should return false if an async generator', () => {
const value = ( async function*() {} )();
const value = ( async function* () {} )();

@@ -33,3 +33,3 @@ expect( isGenerator( value ) ).toBe( false );

it( 'should return true if a generator', () => {
const value = ( function*() {} )();
const value = ( function* () {} )();

@@ -36,0 +36,0 @@ expect( isGenerator( value ) ).toBe( true );

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