Skip to content
本章目录

【类型判断 —— isNull】

功能: 判断数据是否是一个空值(null)类型的数据,如果是则返回true,否则返回false

1-函数引入

js
  import { isNull } from 'tj-jstools'
1

2-函数声明

ts
  declare const isNull: (value: unknown) => boolean
1

3-使用示例

ts
  const res1:boolean = isNull(undefined) // false
  const res2:boolean = isNull('') // false
  const res3:boolean = isNull(null) // true
1
2
3

TIP

isNull方法是采用Object.prototype.toString.call(value)方法实现的,对于undefined空字符串('')的数据得到的结果是false

4-参数不能为空

ERROR

该方法的参数不能为空,否则将抛出错误

js
Uncaught Error: isXXXX方法的参数不能为空!
1

Released under the MIT License.