UNPKG

rambda

Version:

Lightweight faster alternative to Ramda

10 lines (7 loc) 163 B
import { curry } from './curry' export function minByFn( compareFn, x, y ){ return compareFn(y) < compareFn(x) ? y : x } export const minBy = curry(minByFn)