File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
export default function ( ) {
2
- const Analizer = { } ;
2
+ const Analyzer = { } ;
3
3
4
- Analizer . checkType = function ( targetName , code ) {
4
+ Analyzer . checkType = function ( targetName , code ) {
5
5
let type = null ;
6
6
7
7
if ( typeof targetName != "string" || typeof code != "string" ) return type ;
@@ -20,9 +20,9 @@ export default function () {
20
20
break ;
21
21
}
22
22
23
- console . log ( "[Analizer ] Obfuscation type:" , type ) ;
23
+ console . log ( "[Analyzer ] Obfuscation type:" , type ) ;
24
24
return type ;
25
25
}
26
26
27
- return Analizer ;
27
+ return Analyzer ;
28
28
}
Original file line number Diff line number Diff line change 65
65
</template >
66
66
67
67
<script >
68
- import Analizer from " @/Analyzer.js" ;
68
+ import Analyzer from " @/Analyzer.js" ;
69
69
import Alert from " @/components/Alert.vue" ;
70
70
import TargetFuncTip from " @/components/TargetFuncTip.vue" ;
71
71
@@ -77,7 +77,7 @@ export default {
77
77
78
78
data () {
79
79
return {
80
- analizer : null ,
80
+ analyzer : null ,
81
81
targetName: null ,
82
82
mainCode: null ,
83
83
outputCode: null ,
@@ -91,7 +91,7 @@ export default {
91
91
this .outputCode = null ;
92
92
this .$refs .alert .hide ();
93
93
94
- const type = this .analizer .checkType (this .targetName , this .mainCode );
94
+ const type = this .analyzer .checkType (this .targetName , this .mainCode );
95
95
if (type === null ) {
96
96
return this .$refs .alert .showAlert (
97
97
" danger" ,
@@ -155,7 +155,7 @@ export default {
155
155
},
156
156
157
157
mounted () {
158
- this .analizer = Analizer ();
158
+ this .analyzer = Analyzer ();
159
159
},
160
160
};
161
161
</script >
You can’t perform that action at this time.
0 commit comments