Checks if the provided value is an object type (null and functions included, array not included).
The value to check.
A boolean indicating whether the provided value is an object type.
isObject({});;//=> trueisObject([1]);;//=> trueisObject(123);;//=> false Copy
isObject({});;//=> trueisObject([1]);;//=> trueisObject(123);;//=> false
Generated using TypeDoc
Checks if the provided value is an object type (null and functions included, array not included).