isBoolean 
The isBoolean function checks if a value is a boolean.
Signature 
typescript
function isBoolean(val: any): val is booleanParameters 
- val:- unknown- The value to check.
Returns 
- boolean- Returns- trueif the value is boolean, otherwise- false.
Examples 
typescript
import { isBoolean } from 'js-utils-es/predicate';
isBoolean(1); // false
isBoolean(true); // true Hung Hoang
 Hung Hoang