is-plain-object.d.ts 92 B

12
  1. declare const isPlainObject: (value: any) => value is object;
  2. export default isPlainObject;