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