UNPKG

rambdax

Version:

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

11 lines (8 loc) 219 B
import { curry } from './curry' import { view } from './view' function lensSatisfiesFn( predicate, lens, input ){ return Boolean(predicate(view(lens, input))) } export const lensSatisfies = curry(lensSatisfiesFn)