English
Appearance
Determine whether the input value is null or undefined.
null
undefined
import { isNullish } from 'rattail' isNullish(null) // return true isNullish(undefined) // return true isNullish(123) // return false
value
any
boolean