export function isWeakSet(value: any): value is WeakSet { return value && value[Symbol.toStringTag] === 'WeakSet'; }