blob: 45d29f60377885e24e31bcefc1e6250bf61800e8 [file] [log] [blame]
// @flow strict
/**
* Return true if `value` is object-like. A value is object-like if it's not
* `null` and has a `typeof` result of "object".
*/
export default function isObjectLike(value: mixed): boolean %checks {
return typeof value == 'object' && value !== null;
}