English
Appearance
Determine whether the input value is a boolean
const isBoolean: (bool: unknown) => bool is boolean;
import { isBoolean } from 'rattail' isBoolean(true) // return true isBoolean('rattail') // return false
bool
boolean