Checks if the type of value is a Map object.
Value to be checked.
True if the value is a Map, false otherwise.
isMap(new Map()); // trueisMap(new WeakMap()); // falseisMap({}); // falseisMap(null); // false Copy
isMap(new Map()); // trueisMap(new WeakMap()); // falseisMap({}); // falseisMap(null); // false
Checks if the type of value is a Map object.