forked from lowbyteproductions/JavaScript-Is-Weird
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
102 lines (91 loc) · 3.16 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
const fs = require('fs');
const zero = '+[]';
const one = '+!![]';
const number = n => {
if (n === 0) return zero;
return Array.from({length: n}, () => one).join(' + ');
}
const map = {};
const fromString = s =>s.split('').map(x => {
if (!(x in map)) {
const charCode = x.charCodeAt(0);
return `([]+[])[${fromString('constructor')}][${fromString('fromCharCode')}](${number(charCode)})`;
}
return map[x];
}).join('+');
map.a = `(+{}+[])[${number(1)}]`;
map.b = `({}+[])[${number(2)}]`;
map.o = `({}+[])[${number(1)}]`;
map.e = `({}+[])[${number(4)}]`;
map.c = `({}+[])[${number(5)}]`;
map.t = `({}+[])[${number(6)}]`;
map[' '] = `({}+[])[${number(7)}]`;
map.f = `(![]+[])[${number(0)}]`;
map.s = `(![]+[])[${number(3)}]`;
map.r = `(!![]+[])[${number(1)}]`;
map.u = `(!![]+[])[${number(2)}]`;
map.i = `((+!![]/+[])+[])[${number(3)}]`;
map.n = `((+!![]/+[])+[])[${number(4)}]`;
map.S = `([]+([]+[])[${fromString('constructor')}])[${number(9)}]`;
map.g = `([]+([]+[])[${fromString('constructor')}])[${number(14)}]`;
map.p = `([]+(/-/)[${fromString('constructor')}])[${number(14)}]`;
map['\\'] = `(/\\\\/+[])[${number(1)}]`;
map.d = `(${number(13)})[${fromString('toString')}](${number(14)})`;
map.h = `(${number(17)})[${fromString('toString')}](${number(18)})`;
map.m = `(${number(22)})[${fromString('toString')}](${number(23)})`;
map.C = `((()=>{})[${fromString('constructor')}](${fromString('return escape')})()(${map['\\']}))[${number(2)}]`;
const compile = (err, data, filePath, fileType) => {
if (err) {
throw new error(err);
}
const directory = filePath.split("/");
directory.pop();
if (directory.length !== 0 && !fs.existsSync("./outputs/" + directory.join("/"))) {
fs.mkdirSync("./outputs/" + directory.join("/"));
}
const compiledVersion = `${fileType === ".ts" ? "eval('": ""}(()=>{})[${fromString('constructor')}](${fromString(data)})()${fileType === ".ts" ? "')": ""}`;
fs.writeFile("./outputs/" + filePath, compiledVersion,
function(err) {
if(err) {
throw new error(err);
}
console.log(filePath + " generated!");
}
);
};
const followPath = (filePath, fileType) => fs.readFile("./inputs/" + filePath, 'utf8', function (err, data) {
compile(err, data, filePath, fileType);
});
const getAllFiles = (directory = "") => fs.readdir("./inputs/" + directory, function (err, files) {
if (err) {
throw new error(err);
}
for (const file of files) {
if (fs.statSync("./inputs/" + directory + file).isDirectory()) getAllFiles(directory + file + "/");
else {
console.log(directory + file + " detected!");
if (file.endsWith(".js")) {
followPath(directory + file, ".js");
}
if (file.endsWith(".ts")) {
followPath(directory + file, ".ts");
}
}
}
});
const deleteFolderRecursive = function(path) {
if (fs.existsSync(path)) {
fs.readdirSync(path).forEach(function(file) {
const curPath = path + "/" + file;
if(fs.lstatSync(curPath).isDirectory()) {
deleteFolderRecursive(curPath);
} else {
fs.unlinkSync(curPath);
}
});
fs.rmdirSync(path);
}
};
deleteFolderRecursive("./outputs/");
fs.mkdirSync("./outputs/");
getAllFiles();