isObject source npm
_.isObject(value)
Checks if value
is the language type of Object
.
(e.g. arrays, functions, objects, regexes, new Number(0)
, and new String('')
)
Arguments
- value (*)
The value to check.
Returns (boolean)
Returns true
if value
is an object, else false
.
Example
_.isObject({});
// => true
_.isObject([1, 2, 3]);
// => true
_.isObject(_.noop);
// => true
_.isObject(null);
// => false