UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

8 lines (5 loc) 156 B
export function has(prop, obj){ if (arguments.length === 1) return _obj => has(prop, _obj) if (!obj) return false return obj.hasOwnProperty(prop) }