Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.22.62
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
npm /
node_modules /
is-symbol /
Delete
Unzip
Name
Size
Permission
Date
Action
.editorconfig
276
B
-rw-r--r--
2022-01-10 12:20
.jscs.json
4.03
KB
-rw-r--r--
2022-01-10 12:20
.nvmrc
5
B
-rw-r--r--
2022-01-10 12:20
.travis.yml
7.07
KB
-rw-r--r--
2022-01-10 12:20
CHANGELOG.md
261
B
-rw-r--r--
2022-01-10 12:20
LICENSE
1.06
KB
-rw-r--r--
2022-01-10 12:20
Makefile
3.74
KB
-rw-r--r--
2022-01-10 12:20
README.md
1.44
KB
-rw-r--r--
2022-01-10 12:20
index.js
767
B
-rw-r--r--
2022-01-10 12:20
package.json
1.65
KB
-rw-r--r--
2022-01-10 12:20
Save
Rename
'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; }; }