juxt

3.0.3 • Public • Published

juxt (juxtaposition)

Creates a function that calls multiple functions with the same arguments.

Takes several functions and returns a function that applies its arguments to each of those functions. An array of the results is returned.

Installation

yarn add juxt or npm i juxt


Usage

juxt (fn<function>, fn<function>...)

  • returns {array}
import juxt from 'juxt'
 
 
const incr = val => val + 1
const decr = val => val - 1
 
 
const juxtaposedCount = juxt(incr, decr)
juxtaposedCount(0)
// [1, -1]

Dependencies (0)

    Dev Dependencies (11)

    Package Sidebar

    Install

    npm i juxt

    Weekly Downloads

    9

    Version

    3.0.3

    License

    MIT

    Unpacked Size

    5.3 kB

    Total Files

    10

    Last publish

    Collaborators

    • jaredlunde