Checks if the type of value is a Set object.
Value to be checked.
True if the value is a Set, false otherwise.
isSet(new Set()); // trueisSet(new WeakSet()); // falseisSet({}); // falseisSet(null); // false Copy
isSet(new Set()); // trueisSet(new WeakSet()); // falseisSet({}); // falseisSet(null); // false
Checks if the type of value is a Set object.