简体中文
Appearance
判断输入值是否为 null 或 undefined。
null
undefined
import { isNullish } from 'rattail' isNullish(null) // return true isNullish(undefined) // return true isNullish(123) // return false
value
any
boolean