Skip to content

isTruthy

Determine whether the input value is truthy.

Usage

ts
import { isTruthy } from 'rattail'

isTruthy(1) // return true
isTruthy([]) // return true
isTruthy({}) // return true
isTruthy(0) // return false
isTruthy('') // return false
isTruthy(null) // return false
isTruthy(undefined) // return false

Arguments

ArgTypeDefaults
valueany

Return

Type
boolean