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 /
make-arrow-function /
Delete
Unzip
Name
Size
Permission
Date
Action
index.js
816
B
-rw-r--r--
2022-04-12 16:21
package.json
1.77
KB
-rw-r--r--
2022-04-12 16:21
Save
Rename
'use strict'; var getArrows = function getArrowFunctions() { return [ 'return (a, b) => a * b;', 'return () => 42;', 'return () => function () {};', 'return () => x => x * x;', 'return y => x => x * x;', 'return x => x * x;', 'return x => { return x * x; }', 'return (x, y) => { return x + x; }', '"use strict"; return (a = Math.random(10)) => {};', '"use strict"; return (a = function() {\n\tif (Math.random() < 0.5) { return 42; }\n\treturn "something else";\n}) => a();' ]; }; var arrowFuncs = []; var fns = getArrows(); for (var i = 0; i < fns.length; ++i) { try { arrowFuncs.push(Function(fns[i])()); } catch (e) { /**/ } } module.exports = function makeArrowFunction() { return arrowFuncs[0]; }; module.exports.list = function makeArrowFunctions() { return arrowFuncs.slice(); };