UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

10 lines (7 loc) 239 B
import { pipe } from './pipe.js' export function compose(){ if (arguments.length === 0){ throw new Error('compose requires at least one argument') } return pipe.apply(this, Array.prototype.slice.call(arguments, 0).reverse()) }