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