is-object-like

v4.17.15arrow_drop_down
v4.17.15
v4.17.11
STATUS
Passing
DOWNLOADS
9,132
LICENSE
MIT
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
554 B
Checks if `value` is object-like.
2 contributors
Install is-object-like as a package?
Copied
npm i @bit/lodash.lodash.is-object-like
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
isObjectLike (
value:*
) : boolean

Checks if value is object-like. A value is object-like if it’s not null and has a typeof result of "object".

Example
isObjectLike({})
// => true

isObjectLike([1, 2, 3])
// => true

isObjectLike(Function)
// => false

isObjectLike(null)
// => false
Argument
value: *

The value to check.

Returns
boolean

Returns `true` if `value` is object-like, else `false`.

Help and resources