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