plainObject.d.ts 258 B

1234567
  1. /**
  2. * Determine if the value is a plain object.
  3. * @param {*} value The value to check.
  4. * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.
  5. */
  6. declare const isPlainObject: (value: any) => boolean;
  7. export default isPlainObject;