mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
# Conflicts: # jsowell-ui/.env.development # jsowell-ui/.env.staging # jsowell-ui/bin/build-sit.bat # jsowell-ui/bin/build.bat # jsowell-ui/src/api/adapayMember/adapayMember.js # jsowell-ui/src/api/pile/merchant.js # jsowell-ui/src/router/index.js # jsowell-ui/src/views/financial/financeDetail.vue # jsowell-ui/src/views/financial/merchant.vue # jsowell-ui/src/views/homeIndex/homeIndex.vue # jsowell-ui/src/views/login.vue # jsowell-ui/src/views/pile/basic/detail.vue # jsowell-ui/src/views/pile/station/components/SiteInfo.vue # jsowell-ui/src/views/pile/station/detail.vue # jsowell-ui/src/views/pile/station/orderReport.vue
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
var callBound = require('call-bound');
|
|
|
|
var $WeakSet = GetIntrinsic('%WeakSet%', true);
|
|
|
|
/** @type {undefined | (<V>(thisArg: Set<V>, value: V) => boolean)} */
|
|
var $setHas = callBound('WeakSet.prototype.has', true);
|
|
|
|
if ($setHas) {
|
|
/** @type {undefined | (<K extends object, V>(thisArg: WeakMap<K, V>, key: K) => boolean)} */
|
|
var $mapHas = callBound('WeakMap.prototype.has', true);
|
|
|
|
/** @type {import('.')} */
|
|
module.exports = function isWeakSet(x) {
|
|
if (!x || typeof x !== 'object') {
|
|
return false;
|
|
}
|
|
try {
|
|
// @ts-expect-error TS can't figure out that $setHas is always truthy here
|
|
$setHas(x, $setHas);
|
|
if ($mapHas) {
|
|
try {
|
|
// @ts-expect-error this indeed might not be a weak collection
|
|
$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;
|
|
};
|
|
}
|