blob: 3cafc7693cb6d2deb3f5176cedaebcff2c3ac7e9 [file] [log] [blame] [edit]
export function has(prop, obj){
if (arguments.length === 1) return _obj => has(prop, _obj)
if (!obj) return false
return obj.hasOwnProperty(prop)
}