UNPKG

rambdax

Version:

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

11 lines (8 loc) 178 B
import { curry } from './curry.js' import { equals } from './equals.js' export function eqByFn( fn, a, b ){ return equals(fn(a), fn(b)) } export const eqBy = curry(eqByFn)