@naverpay/hidash
Version:
improved lodash
11 lines (9 loc) • 295 B
text/typescript
/**
* @description
* Checks if the provided value is a `Set` object.
*
* @param {unknown} value The value to check
* @returns {boolean} `true` if the value is a `Set`, `false` otherwise
*/
declare function isSet(value: unknown): value is Set<unknown>;
export { isSet as default, isSet };