It will determine whether the provided value is a Map object or not.
value
1.0.0
isMap(new Map);// => true Copy
isMap(new Map);// => true
isMap(new WeakMap);// => false Copy
isMap(new WeakMap);// => false
It will determine whether the provided
value
is a Map object or not.