UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

12 lines (9 loc) 208 B
import { equalsFn } from './equals.js' export function propEq(valueToMatch, propToFind) { return obj => { if (!obj) { return false } return equalsFn(valueToMatch, obj[propToFind]) } }