isPlainObject.d.ts 254 B

12345678910111213
  1. /**
  2. * 判断是否是一个对象
  3. * @param val 值
  4. */
  5. export declare function isPlainObject(val: any): val is object;
  6. declare module './ctor' {
  7. interface XEUtilsMethods {
  8. isPlainObject: typeof isPlainObject;
  9. }
  10. }
  11. export default isPlainObject