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