PHP 7.4.33
Preview: index.js Size: 1.22 KB
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/is-weakset/index.js
'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;
	};
}

Directory Contents

Dirs: 2 × Files: 11
Name Size Perms Modified Actions
.github DIR
- drwxr-xr-x 2025-03-28 11:04:35
Edit Download
test DIR
- drwxr-xr-x 2025-03-28 11:04:35
Edit Download
223 B lrw-r--r-- 2025-03-28 11:04:35
Edit Download
144 B lrw-r--r-- 2025-03-28 11:04:35
Edit Download
12 B lrw-r--r-- 2025-03-28 11:04:35
Edit Download
139 B lrw-r--r-- 2025-03-28 11:04:35
Edit Download
10.30 KB lrw-r--r-- 2025-03-28 11:04:35
Edit Download
113 B lrw-r--r-- 2025-03-28 11:04:35
Edit Download
1.22 KB lrw-r--r-- 2025-03-28 11:04:35
Edit Download
1.04 KB lrw-r--r-- 2025-03-28 11:04:35
Edit Download
2.42 KB lrw-r--r-- 2025-03-28 11:04:35
Edit Download
1.93 KB lrw-r--r-- 2025-03-28 11:04:35
Edit Download
116 B lrw-r--r-- 2025-03-28 11:04:35
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).