isObject.ts 98 B

123
  1. export default function isObject(obj: any) {
  2. return obj !== null && typeof obj === 'object';
  3. }