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