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.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
regexp.prototype.flags /
Delete
Unzip
Name
Size
Permission
Date
Action
auto.js
36
B
-rw-r--r--
2023-11-11 22:35
implementation.js
694
B
-rw-r--r--
2023-11-11 22:35
index.js
388
B
-rw-r--r--
2023-11-11 22:35
package.json
2.51
KB
-rw-r--r--
2023-11-11 22:35
polyfill.js
867
B
-rw-r--r--
2023-11-11 22:35
shim.js
779
B
-rw-r--r--
2023-11-11 22:35
Save
Rename
'use strict'; var implementation = require('./implementation'); var supportsDescriptors = require('define-properties').supportsDescriptors; var $gOPD = Object.getOwnPropertyDescriptor; module.exports = function getPolyfill() { if (supportsDescriptors && (/a/mig).flags === 'gim') { var descriptor = $gOPD(RegExp.prototype, 'flags'); if ( descriptor && typeof descriptor.get === 'function' && typeof RegExp.prototype.dotAll === 'boolean' && typeof RegExp.prototype.hasIndices === 'boolean' ) { /* eslint getter-return: 0 */ var calls = ''; var o = {}; Object.defineProperty(o, 'hasIndices', { get: function () { calls += 'd'; } }); Object.defineProperty(o, 'sticky', { get: function () { calls += 'y'; } }); if (calls === 'dy') { return descriptor.get; } } } return implementation; };