Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
exotic / dist / types / collection / isCollection.d.ts
Size: Mime:
/**
 * @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;