UNPKG

@zstings/utils

Version:

javascript、typescript 工具函数库 文档地址 [utils 文档](https://zstings.github.io/utils/)

18 lines (17 loc) 297 B
/** * 判断是否为Set * @param value 任意值 * @return true | false * @category 对象Object * @example * 验证通过 * ```ts * isSet(new Set()) => true * ``` * @example * 验证失败 * ```ts * isSet(123) => false * ``` */ export default function isSet(value: any): boolean;