UNPKG

@apollo/gateway

Version:
9 lines (8 loc) 182 B
export function isObject(value: any): value is object { return ( value !== undefined && value !== null && typeof value === 'object' && !Array.isArray(value) ); }