@std-types/is-boolean
v1.0.0
Published
Type-checking library for booleans.
Downloads
15
Readme
@std-types/is-boolean
Type-checking library for booleans.
Installation
npm install @std-types/is-boolean
Usage
import isBoolean from "@std-types/is-boolean";
declare const someValue: unknown;
if (isBoolean(someValue)) {
// someValue is a boolean
}