export function isObject(obj: T) { return Boolean((typeof obj === 'object' && obj !== null && !Array.isArray(obj))); }