Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

isBoolean

import { isBoolean } from "https://raw.githubusercontent.com/baetheus/fun/main/boolean.ts";

A type guard, indicating that a value is a boolean.

function isBoolean(a: unknown): a is boolean;
§
isBoolean(a: unknown): a is boolean
[src]

§Parameters

§
a: unknown
[src]

§Return Type

§
a is boolean
[src]