feat: add model fix gerakan bukan abjad sibi

This commit is contained in:
mphstar 2025-03-21 01:54:17 +07:00
parent 178fb250d4
commit 1785fa98e1
6 changed files with 6 additions and 1 deletions

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

View File

@ -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]}`;
}; };