Repository URL to install this package:
|
Version:
2.0.1 ▾
|
/**
* Object or Array into a Set
* @since 5.0.0-beta.6
* @memberOf cast
*
* @name arrayToSet
* @alias arrToSet
*/
declare const arrayToSet: <Type>(array: Type | Type[]) => Set<Type>;
export { arrayToSet };
export default arrayToSet;