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