UNPKG

@zerodep/is-weakset

Version:

A utility to determine if a value is a WeakSet

1 lines 136 B
let isWeakSet=value=>{try{return"[object WeakSet]"===Object.prototype.toString.call(value)}catch{return!1}};exports.isWeakSet=isWeakSet;