This repository has been archived on 2025-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
2021-06-03 13:29:02 +03:00

3 lines
97 B
JavaScript

export const compose = (...functions) => args =>
functions.reduce((arg, fn) => fn(arg), args);