UNPKG

240 BTypeScriptView Raw
1/**
2 * 判断是否 undefined 和 null
3 * @param obj 对象
4 */
5export declare function eqNull(obj: any): boolean;
6
7declare module './ctor' {
8 interface XEUtilsMethods {
9 eqNull: typeof eqNull;
10 }
11}
12
13export default eqNull