Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
is-regex /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxr-xr-x
2022-04-21 14:29
.editorconfig
286
B
-rw-r--r--
2022-04-21 14:25
.eslintignore
10
B
-rw-r--r--
2022-04-21 14:25
.eslintrc
221
B
-rw-r--r--
2022-04-21 14:25
.nycrc
159
B
-rw-r--r--
2022-04-21 14:25
CHANGELOG.md
19.4
KB
-rw-r--r--
2022-04-21 14:25
LICENSE
1.06
KB
-rw-r--r--
2022-04-21 14:25
README.md
1.79
KB
-rw-r--r--
2022-04-21 14:25
index.js
1.37
KB
-rw-r--r--
2022-04-21 14:25
package.json
2.19
KB
-rw-r--r--
2022-04-21 14:25
Save
Rename
'use strict'; var callBound = require('call-bind/callBound'); var hasToStringTag = require('has-tostringtag/shams')(); var has; var $exec; var isRegexMarker; var badStringifier; if (hasToStringTag) { has = callBound('Object.prototype.hasOwnProperty'); $exec = callBound('RegExp.prototype.exec'); isRegexMarker = {}; var throwRegexMarker = function () { throw isRegexMarker; }; badStringifier = { toString: throwRegexMarker, valueOf: throwRegexMarker }; if (typeof Symbol.toPrimitive === 'symbol') { badStringifier[Symbol.toPrimitive] = throwRegexMarker; } } var $toString = callBound('Object.prototype.toString'); var gOPD = Object.getOwnPropertyDescriptor; var regexClass = '[object RegExp]'; module.exports = hasToStringTag // eslint-disable-next-line consistent-return ? function isRegex(value) { if (!value || typeof value !== 'object') { return false; } var descriptor = gOPD(value, 'lastIndex'); var hasLastIndexDataProperty = descriptor && has(descriptor, 'value'); if (!hasLastIndexDataProperty) { return false; } try { $exec(value, badStringifier); } catch (e) { return e === isRegexMarker; } } : function isRegex(value) { // In older browsers, typeof regex incorrectly returns 'function' if (!value || (typeof value !== 'object' && typeof value !== 'function')) { return false; } return $toString(value) === regexClass; };