compose
Last updated
Last updated
Composes functions from right to left.
This is a functional programming utility, and is included in Redux as a convenience. You might want to use it to apply several in a row.
(arguments): The functions to compose. Each function is expected to accept a single parameter. Its return value will be provided as an argument to the function standing to the left, and so on. The exception is the right-most argument which can accept multiple parameters, as it will provide the signature for the resulting composed function.
(Function): The final function obtained by composing the given functions from right to left.
This example demonstrates how to use compose
to enhance a with and a few developer tools from the package.
All compose
does is let you write deeply nested function transformations without the rightward drift of the code. Don't give it too much credit!