deno.land / x / rambda@v9.1.1 / source / minBy.spec.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
import { minBy } from './minBy.js'
test('happy', () => { expect(minBy( Math.abs, -5, 2 )).toBe(2)})
test('curried', () => { expect(minBy(Math.abs)(2, -5)).toBe(2) expect(minBy(Math.abs)(2)(-5)).toBe(2)})
rambda

Version Info

Tagged at
2 months ago