Skip to main content
Module

x/rambda/minBy.spec.js

Faster and smaller alternative to Ramda
Go to Latest
File
import { minBy } from './minBy'
test('happy', () => { expect(minBy( Math.abs, -5, 2 )).toEqual(2)})
test('curried', () => { expect(minBy(Math.abs)(2, -5)).toEqual(2) expect(minBy(Math.abs)(2)(-5)).toEqual(2)})