Skip to content

isEmpty

判断输入值是否为空(undefinednull空字符串空数组)。

使用

ts
import { isEmpty } from 'rattail'

isEmpty(null) // return true
isEmpty('') // return true
isEmpty([]) // return true
isEmpty([1, 2, 3]) // return false

参数

参数类型默认值
valueany

返回值

类型
boolean