Skip to main content
Module

x/rambda/source/juxt.js

Faster and smaller alternative to Ramda
Latest
File
export function juxt(listOfFunctions){ return (...args) => listOfFunctions.map(fn => fn(...args))}