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