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 /
doc /
node-regjsgen /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
example.js
446
B
-rw-r--r--
2022-04-07 14:21
Save
Rename
// the parser goes from the regex-string to the regex-AST parse = require('regjsparser').parse // the generator goes the other way around gen = require('regjsgen').generate // we start from a trivial regex-string orig = 'abc+' console.log ('Original regex: ' + orig) // turn the regex-string to regex-AST ast = parse(orig) // turn the regex-AST back to regex-string final = gen(ast) console.log('Regex after two inverse transforms : ' + final)