Skip to main content
Module

x/lodash_es/mod.ts>isBoolean

lodash for deno use
Latest
function isBoolean
import { isBoolean } from "https://deno.land/x/lodash_es@v0.0.2/mod.ts";

Checks if value is classified as a boolean primitive or object.

Examples

_.isBoolean(false); // => true

_.isBoolean(null); // => false

Parameters

value

The value to check.