|
@@ -28,22 +28,24 @@ class UnicodeArrayDecodeNode extends Node_1.Node {
|
|
|
let node = esprima.parse(`
|
|
|
(function () {
|
|
|
${JavaScriptObfuscator_1.JavaScriptObfuscator.obfuscate(`
|
|
|
- var object = []['filter']['constructor']('return this')();
|
|
|
- var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
|
|
|
-
|
|
|
- object.atob || (
|
|
|
- object.atob = function(input) {
|
|
|
- var str = String(input).replace(/=+$/, '');
|
|
|
- for (
|
|
|
- var bc = 0, bs, buffer, idx = 0, output = '';
|
|
|
- buffer = str.charAt(idx++);
|
|
|
- ~buffer && (bs = bc % 4 ? bs * 64 + buffer : buffer,
|
|
|
- bc++ % 4) ? output += String.fromCharCode(255 & bs >> (-2 * bc & 6)) : 0
|
|
|
- ) {
|
|
|
- buffer = chars.indexOf(buffer);
|
|
|
- }
|
|
|
- return output;
|
|
|
- });
|
|
|
+ (function () {
|
|
|
+ var object = []['filter']['constructor']('return this')();
|
|
|
+ var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
|
|
|
+
|
|
|
+ object.atob || (
|
|
|
+ object.atob = function(input) {
|
|
|
+ var str = String(input).replace(/=+$/, '');
|
|
|
+ for (
|
|
|
+ var bc = 0, bs, buffer, idx = 0, output = '';
|
|
|
+ buffer = str.charAt(idx++);
|
|
|
+ ~buffer && (bs = bc % 4 ? bs * 64 + buffer : buffer,
|
|
|
+ bc++ % 4) ? output += String.fromCharCode(255 & bs >> (-2 * bc & 6)) : 0
|
|
|
+ ) {
|
|
|
+ buffer = chars.indexOf(buffer);
|
|
|
+ }
|
|
|
+ return output;
|
|
|
+ });
|
|
|
+ })();
|
|
|
`, NoCustomNodesPreset_1.NO_CUSTOM_NODES_PRESET)}
|
|
|
|
|
|
var ${tempArrayName} = [];
|