chore(compose): regenerate README

This commit is contained in:
Julien Fontanet 2021-02-22 15:09:23 +01:00
parent dcc11f16b1
commit 3ed488e10f

View File

@ -29,7 +29,9 @@ console.log(f(5))
// → 21
```
The first function is called with the context and all arguments of the composed function:
> The call context (`this`) of the composed function is forwarded to all functions.
The first function is called with all arguments of the composed function:
```js
const add = (x, y) => x + y