UNPKG
astuteweb-utils
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
机敏web开发常用工具函数
astuteweb-utils
/
src
/
boolean
/
index.js
11 lines
(10 loc)
•
153 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** *布尔校验 * *
@export
*
@param
{
*
}
val
*
@return
{
*
} */
export
function
isBoolean
(
val
) {
return
typeof
val ===
'boolean'
; }