UNPKG

rambdax

Version:

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

12 lines (8 loc) 264 B
export function propFn(searchProperty, obj){ if (!obj) return undefined return obj[ searchProperty ] } export function prop(searchProperty, obj){ if (arguments.length === 1) return _obj => prop(searchProperty, _obj) return propFn(searchProperty, obj) }