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