The isBoolean
function from lodash allows you to determine whether a value is a boolean or not. Here's how you can use it:
index.tsx19 chars2 lines
isBoolean
function into your JavaScript file:index.tsx36 chars2 lines
isBoolean
function to check if a value is a boolean:index.tsx154 chars5 lines
Note that the isBoolean
function returns true
if the value is a boolean, and false
otherwise. This can be useful for type checking and validation in your JavaScript applications.
gistlibby LogSnag