UNPKG

rambdax

Version:

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

11 lines (8 loc) 220 B
import { curry } from './curry.js' import { prop } from './prop.js' function propSatisfiesFn( predicate, property, obj ){ return predicate(prop(property, obj)) } export const propSatisfies = curry(propSatisfiesFn)