瀏覽代碼

Reverted `dev.ts` file

sanex 3 年之前
父節點
當前提交
7a93c8ca3e
共有 1 個文件被更改,包括 6 次插入12 次删除
  1. 6 12
      test/dev/dev.ts

+ 6 - 12
test/dev/dev.ts

@@ -7,23 +7,17 @@ import { NO_ADDITIONAL_NODES_PRESET } from '../../src/options/presets/NoCustomNo
 
     let obfuscationResult = JavaScriptObfuscator.obfuscate(
         `
-            const isTrue = something => !!(something?.bob || something?.sally);
-            const throwsError = () => {
-              throw new Error("Should not be here!");
-            };
-           
-            const myFunction2 = () => {
-              return isTrue() ? { my: "object", nested: { anotherParam: new throwsError() } } : "The only place we should be";
-            };
-           
-            
-            console.log(myFunction2());
+            console.log('foo');
+            console.log('bar');
+            console.log('bar');
         `,
         {
             ...NO_ADDITIONAL_NODES_PRESET,
             compact: false,
             simplify: false,
-            transformObjectKeys: true,
+            stringArray: true,
+            stringArrayThreshold: 1,
+            stringArrayEncoding: ['base64'],
             identifierNamesGenerator: 'mangled'
         }
     );