fix(compose): update README
This commit is contained in:
parent
a8ac6fc738
commit
ba6baaec0a
@ -29,6 +29,27 @@ console.log(f(5))
|
|||||||
// → 21
|
// → 21
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Functions may also be passed in an array:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const f = compose([add2, mul3])
|
||||||
|
```
|
||||||
|
|
||||||
|
Options can be passed as first parameters:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const f = compose(
|
||||||
|
{
|
||||||
|
// compose async functions
|
||||||
|
async: true,
|
||||||
|
|
||||||
|
// compose from right to left
|
||||||
|
right: true,
|
||||||
|
},
|
||||||
|
[add2, mul3]
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
## Contributions
|
## Contributions
|
||||||
|
|
||||||
Contributions are _very_ welcomed, either on the documentation or on
|
Contributions are _very_ welcomed, either on the documentation or on
|
||||||
|
Loading…
Reference in New Issue
Block a user