UNPKG

rambdax

Version:

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

12 lines (9 loc) 225 B
import { curry } from './curry' import { equals } from './equals' import { view } from './view' function lensEqFn( lens, target, input ){ return equals(view(lens, input), target) } export const lensEq = curry(lensEqFn)