isObject.ts 96 Bytes Edit 1 2 3 export function isObject(x: any): x is Object { return x !== null && typeof x === 'object'; }