redux-duck icon indicating copy to clipboard operation
redux-duck copied to clipboard

Helper function to create Redux modules using the ducks-modular-redux proposal

Results 3 redux-duck issues
Sort by recently updated
recently updated
newest added
trafficstars

``` myActionCreator(false); ``` will return: ``` { type: 'MY_ACTION' } ``` without payload, cause it doesn't pass current check against undefined. FIX: https://github.com/PlatziDev/redux-duck/pull/3

Payload is empty string? Oops...

there could be some simple payloads like `0`, `''` or `false`, that will be skipped in current implementation. for that reason need to check against `undefined`.