has-path

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
3
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
854 B
Returns whether or not a path exists in an object.
1 contributor
Install has-path as a package?
Copied
npm i @bit/justin-capalbo.ramda.has-path
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
hasPath (
path:Array,
obj:Object
) : Boolean

Returns whether or not a path exists in an object. Only the object’s own properties are checked.

Example
R.hasPath(['a', 'b'], {a: {b: 2}});         // => true
     R.hasPath(['a', 'b'], {a: {b: undefined}}); // => true
     R.hasPath(['a', 'b'], {a: {c: 2}});         // => false
     R.hasPath(['a', 'b'], {});                  // => false
Arguments
path: Array

The path to use.

obj: Object

The object to check the path in.

Returns
Boolean

Whether the path exists.

Help and resources