Skip to content
本章目录

【类型判断 —— isBoolean】

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

1-函数引入

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

2-函数声明

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

3-使用示例

ts
  const res1:boolean = isBoolean(5) // false
  const res2:boolean = isBoolean(true) // true
1
2

4-参数不能为空

ERROR

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

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

Released under the MIT License.