Skip to content

Commit 8bce8a9

Browse files
committed
Fixed misspelling (analizer -> analyzer)
1 parent 20b4e06 commit 8bce8a9

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/Analyzer.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default function () {
2-
const Analizer = {};
2+
const Analyzer = {};
33

4-
Analizer.checkType = function(targetName, code) {
4+
Analyzer.checkType = function(targetName, code) {
55
let type = null;
66

77
if (typeof targetName != "string" || typeof code != "string") return type;
@@ -20,9 +20,9 @@ export default function () {
2020
break;
2121
}
2222

23-
console.log("[Analizer] Obfuscation type:", type);
23+
console.log("[Analyzer] Obfuscation type:", type);
2424
return type;
2525
}
2626

27-
return Analizer;
27+
return Analyzer;
2828
}

src/components/Main.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
</template>
6666

6767
<script>
68-
import Analizer from "@/Analyzer.js";
68+
import Analyzer from "@/Analyzer.js";
6969
import Alert from "@/components/Alert.vue";
7070
import TargetFuncTip from "@/components/TargetFuncTip.vue";
7171
@@ -77,7 +77,7 @@ export default {
7777
7878
data() {
7979
return {
80-
analizer: null,
80+
analyzer: null,
8181
targetName: null,
8282
mainCode: null,
8383
outputCode: null,
@@ -91,7 +91,7 @@ export default {
9191
this.outputCode = null;
9292
this.$refs.alert.hide();
9393
94-
const type = this.analizer.checkType(this.targetName, this.mainCode);
94+
const type = this.analyzer.checkType(this.targetName, this.mainCode);
9595
if (type === null) {
9696
return this.$refs.alert.showAlert(
9797
"danger",
@@ -155,7 +155,7 @@ export default {
155155
},
156156
157157
mounted() {
158-
this.analizer = Analizer();
158+
this.analyzer = Analyzer();
159159
},
160160
};
161161
</script>

0 commit comments

Comments
 (0)