@wordpress/redux-routine
Advanced tools
Comparing version 3.9.0 to 3.9.1-rc.0
{ | ||
"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" | ||
} |
@@ -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 ); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
60516
1