File tree Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ const STRING_ARRAY_ENCODING_OPTIONS = [
27
27
] ;
28
28
29
29
export const TARGET_BROWSER = 'browser' ;
30
- export const TARGET_EXTENSION = 'extension ' ;
30
+ export const TARGET_BROWSER_NO_EVAL = 'browser-no-eval ' ;
31
31
export const TARGET_NODE = 'node' ;
32
32
33
33
const TARGET_OPTIONS = [
34
34
{ text : 'Browser' , value : TARGET_BROWSER } ,
35
- { text : 'Extension ' , value : TARGET_EXTENSION } ,
35
+ { text : 'Browser No Eval ' , value : TARGET_BROWSER_NO_EVAL } ,
36
36
{ text : 'Node' , value : TARGET_NODE } ,
37
37
] ;
38
38
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " javascript-obfuscator-web" ,
3
- "version" : " 1.1.0 " ,
3
+ "version" : " 1.1.1 " ,
4
4
"description" : " " ,
5
5
"main" : " server.js" ,
6
6
"engines" : {
Original file line number Diff line number Diff line change @@ -443,13 +443,10 @@ <h3>Sounds great!</h3>
443
443
< td >
444
444
< p > You can set the target environment of the obfuscated code to one of the following:</ p >
445
445
< ul >
446
- < li > < strong > browser </ strong > </ li >
447
- < li > < strong > extension </ strong > </ li >
448
- < li > < strong > node </ strong > </ li >
446
+ < li > < strong > Browser </ strong > </ li >
447
+ < li > < strong > Browser No Eval </ strong > </ li >
448
+ < li > < strong > Node </ strong > </ li >
449
449
</ ul >
450
- < p > Use the < code > extension</ code > target option if the obfuscated code will be used on a browser
451
- extension. Code obfuscated with this option does not use the < code > eval</ code > JavaScript
452
- function.</ p >
453
450
< div class ="ui tiny message ">
454
451
< p > < i class ="warning sign icon "> </ i > Currently the output of < code > browser</ code > and < code > node</ code >
455
452
is identical.</ p >
You can’t perform that action at this time.
0 commit comments