Skip to main content
Module

x/rambda/source/juxt-spec.ts

Faster and smaller alternative to Ramda
Go to Latest
File
import {juxt} from 'rambda'
describe('R.juxt', () => { it('happy', () => { const fn = juxt([Math.min, Math.max]) const result = fn(3, 4, 9, -3) result // $ExpectType [number, number] })})