UNPKG

popmotion

Version:

The animator's toolbox

5 lines (3 loc) 142 B
const combineFunctions = (a, b) => (v) => b(a(v)); const pipe = (...transformers) => transformers.reduce(combineFunctions); export { pipe };