搜索文档
isNull(val): boolean
val
boolean
判断是否为空值
unknown
是否为空值
Example
isNull(null); // => true isNull(undefined); // => false isNull(''); // => false