UNPKG

230 BTypeScriptView Raw
1/**
2 * 判断是否为 Null
3 * @param val 值
4 */
5export declare function isNull(val: any): val is null;
6
7declare module './ctor' {
8 interface XEUtilsMethods {
9 isNull: typeof isNull;
10 }
11}
12
13export default isNull