/** @module type/isMapOrSet.ts */ import {type} from './type' /** * Todo */ export const isMapOrSet = ( obj: unknown ): obj is ( Set|Map ) => !![ 'Map', 'Set' ].find( ( i ) => i === type( obj ) ) export default isMapOrSet