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 setFunctionName = require('set-function-name'); var $Object = Object; var $TypeError = TypeError; module.exports = setFunctionName(function flags() { if (this != null && this !== $Object(this)) { throw new $TypeError('RegExp.prototype.flags getter called on non-object'); } var result = ''; if (this.hasIndices) { result += 'd'; } if (this.global) { result += 'g'; } if (this.ignoreCase) { result += 'i'; } if (this.multiline) { result += 'm'; } if (this.dotAll) { result += 's'; } if (this.unicode) { result += 'u'; } if (this.unicodeSets) { result += 'v'; } if (this.sticky) { result += 'y'; } return result; }, 'get flags', true);