Returns true
if the given object
is strictly an Object
and not aFunction
(even though functions are objects in JavaScript).
Otherwise, returns false
.
const util = require('util');
util.isObject(5);
// Returns: false
util.isObject(null);
// Returns: false
util.isObject({});
// Returns: true
util.isObject(() => {});
// Returns: false
Since v4.0.0 - Deprecated: Use value !== null && typeof value === 'object'
instead.
Generated using TypeDoc
Returns
true
if the givenobject
is strictly anObject
and not aFunction
(even though functions are objects in JavaScript). Otherwise, returnsfalse
.Deprecated
Since v4.0.0 - Deprecated: Use
value !== null && typeof value === 'object'
instead.