StrictisObjectOn this pageisObjectisObject variable Checks if value is the type of object. Signature: isObject: <T>(input: T) => input is T & object Example isObject({}); // trueisObject([1, 2, 3]); // trueisObject(() => {}); // trueisObject(null); // falseisObject(123); // false Open Source Code