Repository URL to install this package:
|
Version:
2.0.1 ▾
|
/**
* @name isCollection
* @alias isMapOrSet
* @type {Function}
* @since 5.0.0-beta.9
*/
declare const isCollection: (x: any) => x is Set<any> | Map<any, any>;
export { isCollection };
export default isCollection;