UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

10 lines (7 loc) 166 B
import { curry } from './curry.js' export function maxByFn( compareFn, x, y ){ return compareFn(y) > compareFn(x) ? y : x } export const maxBy = curry(maxByFn)