@salsita/react-helpers
v1.0.0
Published
## Install
Downloads
3
Readme
react-helpers
Install
Install this package with npm
npm i @salsita/react-helpers
or yarn
yarn add @salsita/react-helpers
API
Functions
composeSaga(...sagas) ⇒ Generator
A helper function to compose multiple sagas
Given two Sagas as arguments, eg. compose(f, g) function composition f∘g is performed. Please note that functions are executed in backward order.
Kind: global function
Returns: Generator - Composed Saga
| Param | Type | Description | | --- | --- | --- | | ...sagas | Generator | Sagas to be composed |
empty()
An empty function that performs nothing
Kind: global function
identity(value)
An identity function that return its input
Kind: global function
| Param | Type | Description | | --- | --- | --- | | value | any | A value that will be returned |