feat: add model fix gerakan bukan abjad sibi
This commit is contained in:
parent
178fb250d4
commit
1785fa98e1
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
|
@ -23,9 +23,14 @@ export const abjads = [
|
||||||
"W",
|
"W",
|
||||||
"X",
|
"X",
|
||||||
"Y",
|
"Y",
|
||||||
|
"Tidak Dikenali",
|
||||||
];
|
];
|
||||||
|
|
||||||
const ConvertResult = (result: number) => {
|
const ConvertResult = (result: number) => {
|
||||||
|
if (result < 0 || result > 23) {
|
||||||
|
return "Tidak Dikenali";
|
||||||
|
}
|
||||||
|
|
||||||
return `Abjad ${abjads[result]}`;
|
return `Abjad ${abjads[result]}`;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue