-
Notifications
You must be signed in to change notification settings - Fork 0
guards.Function.isBool
github-actions[bot] edited this page Jun 8, 2026
·
2 revisions
@zenstone/ts-utils / guards / isBool
isBool(
val):val is boolean
Defined in: src/guards/index.ts:290
检查值是否为布尔值
unknown
任意值
val is boolean
if (isBool(value)) {
console.log(value ? 'yes' : 'no');
}