_.isObject(value)
Checks if value
is the language type of Object
. (e.g. arrays, functions, objects, regexes, new Number(0)
, and new String('')
)
Since
0.1.0
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
Please login to continue.