has

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
880 B
Returns whether or not an object has an own property with the specified name
1 contributor
Install has as a package?
Copied
npm i @bit/justin-capalbo.ramda.has
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
has (
prop:String,
obj:Object
) : Boolean

Returns whether or not an object has an own property with the specified name

Example
const hasName = R.has('name');
     hasName({name: 'alice'});   //=> true
     hasName({name: 'bob'});     //=> true
     hasName({});                //=> false

     const point = {x: 0, y: 0};
     const pointHas = R.has(R.__, point);
     pointHas('x');  //=> true
     pointHas('y');  //=> true
     pointHas('z');  //=> false
Arguments
prop: String

The name of the property to check for.

obj: Object

The object to query.

Returns
Boolean

Whether the property exists.

Help and resources