UNPKG

ramda-extension

Version:

Helpful functions built on top of the mighty Ramda

16 lines (15 loc) 294 B
import { apply, pipe } from 'ramda'; /** * Applies pipe by to a list of functions. * * @func * @category Function * * @example * * R_.applyPipe([multiply(2), add(1)])(3) // 7 * * @sig [(a -> b)] -> a -> b */ var applyPipe = /*#__PURE__*/apply(pipe); export default applyPipe;