UNPKG

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