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 /
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 supportsDescriptors = require('define-properties').supportsDescriptors; var getPolyfill = require('./polyfill'); var gOPD = Object.getOwnPropertyDescriptor; var defineProperty = Object.defineProperty; var TypeErr = TypeError; var getProto = Object.getPrototypeOf; var regex = /a/; module.exports = function shimFlags() { if (!supportsDescriptors || !getProto) { throw new TypeErr('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors'); } var polyfill = getPolyfill(); var proto = getProto(regex); var descriptor = gOPD(proto, 'flags'); if (!descriptor || descriptor.get !== polyfill) { defineProperty(proto, 'flags', { configurable: true, enumerable: false, get: polyfill }); } return polyfill; };