-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
39 lines (34 loc) · 951 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
'use strict';
var GetIntrinsic = require('get-intrinsic');
var callBound = require('call-bind/callBound');
var $WeakSet = GetIntrinsic('%WeakSet%', true);
var $setHas = callBound('WeakSet.prototype.has', true);
if ($setHas) {
var $mapHas = callBound('WeakMap.prototype.has', true);
/** @type {import('.')} */
module.exports = function isWeakSet(x) {
if (!x || typeof x !== 'object') {
return false;
}
try {
$setHas(x, $setHas);
if ($mapHas) {
try {
$mapHas(x, $mapHas);
} catch (e) {
return true;
}
}
// @ts-expect-error TS can't figure out that $WeakSet is always truthy here
return x instanceof $WeakSet; // core-js workaround, pre-v3
} catch (e) {}
return false;
};
} else {
/** @type {import('.')} */
// @ts-expect-error
module.exports = function isWeakSet(x) { // eslint-disable-line no-unused-vars
// `WeakSet` does not exist, or does not have a `has` method
return false;
};
}