UNPKG

@planjs/utils

Version:

🔧 Common tools collection

12 lines (10 loc) 180 B
import getType from './get-type'; /** * 是否为Set类型 * @param value * @category Is */ function isSet(value) { return getType(value) === 'Set'; } export default isSet;