UNPKG

rambdax

Version:

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

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