UNPKG

rambdax

Version:

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

10 lines (7 loc) 218 B
import { propFn } from './prop.js'; export function hasIn(searchProperty, obj) { if (arguments.length === 1) { return (_obj) => hasIn(searchProperty, _obj); } return propFn(searchProperty, obj) !== undefined; }