Skip to content

isSet

判断输入值是否是 Set

使用

ts
import { isSet } from 'rattail'

isSet(new Set()) // return true
isSet({}) // return false

参数

参数类型默认值
valueany

返回值

类型
boolean