isPlainObject.d.ts 191 B

12345
  1. /**
  2. * @param {any} obj The object to inspect.
  3. * @returns {boolean} True if the argument appears to be a plain object.
  4. */
  5. export default function isPlainObject(obj: unknown): boolean;