PHP 8.2.30
Preview: index.js Size: 767 B
/usr/lib/node_modules/npm/node_modules/is-symbol/index.js

'use strict';

var toStr = Object.prototype.toString;
var hasSymbols = require('has-symbols')();

if (hasSymbols) {
	var symToStr = Symbol.prototype.toString;
	var symStringRegex = /^Symbol\(.*\)$/;
	var isSymbolObject = function isRealSymbolObject(value) {
		if (typeof value.valueOf() !== 'symbol') {
			return false;
		}
		return symStringRegex.test(symToStr.call(value));
	};

	module.exports = function isSymbol(value) {
		if (typeof value === 'symbol') {
			return true;
		}
		if (toStr.call(value) !== '[object Symbol]') {
			return false;
		}
		try {
			return isSymbolObject(value);
		} catch (e) {
			return false;
		}
	};
} else {

	module.exports = function isSymbol(value) {
		// this environment does not support Symbols.
		return false && value;
	};
}

Directory Contents

Dirs: 0 × Files: 10

Name Size Perms Modified Actions
276 B lrw-r--r-- 2021-03-10 14:36:37
Edit Download
4.03 KB lrw-r--r-- 2021-03-10 14:36:37
Edit Download
5 B lrw-r--r-- 2021-03-10 14:36:37
Edit Download
7.07 KB lrw-r--r-- 2021-03-10 14:36:37
Edit Download
261 B lrw-r--r-- 2021-03-10 14:36:37
Edit Download
767 B lrw-r--r-- 2021-03-10 14:36:37
Edit Download
1.06 KB lrw-r--r-- 2021-03-10 14:36:37
Edit Download
3.74 KB lrw-r--r-- 2021-03-10 14:36:37
Edit Download
1.65 KB lrw-r--r-- 2021-03-10 14:36:37
Edit Download
1.44 KB lrw-r--r-- 2021-03-10 14:36:37
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).