Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
is-set /
Delete
Unzip
Name
Size
Permission
Date
Action
index.js
904
B
-rw-r--r--
2023-11-11 22:35
package.json
1.72
KB
-rw-r--r--
2023-11-11 22:35
Save
Rename
'use strict'; var $Map = typeof Map === 'function' && Map.prototype ? Map : null; var $Set = typeof Set === 'function' && Set.prototype ? Set : null; var exported; if (!$Set) { // eslint-disable-next-line no-unused-vars exported = function isSet(x) { // `Set` is not present in this environment. return false; }; } var $mapHas = $Map ? Map.prototype.has : null; var $setHas = $Set ? Set.prototype.has : null; if (!exported && !$setHas) { // eslint-disable-next-line no-unused-vars exported = function isSet(x) { // `Set` does not have a `has` method return false; }; } module.exports = exported || function isSet(x) { if (!x || typeof x !== 'object') { return false; } try { $setHas.call(x); if ($mapHas) { try { $mapHas.call(x); } catch (e) { return true; } } return x instanceof $Set; // core-js workaround, pre-v2.5.0 } catch (e) {} return false; };