docs(isBoolean): Add isBoolean

This commit is contained in:
raon0211 2024-08-08 18:47:50 +09:00
parent 71dcaa4d23
commit 5ef7f3e245
3 changed files with 33 additions and 8 deletions

View File

@ -1,9 +1,6 @@
# isBoolean
주어진 값이 불리언(boolean)인지 확인합니다.
이 함수는 주어진 값이 `boolean` 타입인지 엄격하게 확인합니다.
값이 `boolean`이면 `true`를 반환하고, 아니면 `false`를 반환해요.
주어진 값이 불리언(boolean)인지 확인해요.
TypeScript의 타입 가드로 주로 사용되는데요, 파라미터로 주어진 값을 `boolean`인 타입으로 좁힐 수 있어요.

View File

@ -1,9 +1,6 @@
# isBoolean
Checks if the given value is boolean.
This function tests whether the provided value is strictly `boolean`.
It returns `true` if the value is `boolean`, and `false` otherwise.
Checks if the given value is a boolean.
This function can also serve as a type predicate in TypeScript, narrowing the type of the argument to `boolean`.

View File

@ -0,0 +1,31 @@
# isBoolean
检查给定值是否为布尔值。
此函数还可以作为 TypeScript 中的类型谓词,将参数的类型缩小为 `boolean`
## 签名
```typescript
function isBoolean(x: unknown): x is boolean;
```
### 参数
- `x` (`unknown`): 要测试是否为布尔值的值。
### 返回值
(`x is boolean`): 如果该值是布尔值,则为真;否则为假。
## 示例
```typescript
const value1 = true;
const value2 = 0;
const value3 = 'abc';
console.log(isBoolean(value1)); // true
console.log(isBoolean(value2)); // false
console.log(isBoolean(value3)); // false
```