Home > @dinofe/xt-core > isUndef
# isUndef() function
是否为未定义
Signature:
export declare function isUndef(a: any): boolean;
# Parameters
Parameter | Type | Description |
---|---|---|
a | any | 待校验的数据 |
Returns:
boolean
判断结果
# Remarks
是否是 undefiend | null
# Example
import { isUndef } from '@dinofe/xt-core/common'
isUndef(undefined) // true
isUndef(null) // true
isUndef('undefined') // false
isUndef({}) // false