[feat] romanizer

This commit is contained in:
kwaroran
2023-11-09 20:05:48 +09:00
parent b023ee5f6b
commit 625f5d2973

View File

@@ -27,6 +27,7 @@ export function romanizer(texts:string[]){
text += koreanDict.jong[code[2]]
}
language.korean++
result += text
continue
}
@@ -50,6 +51,8 @@ export function romanizer(texts:string[]){
language.roman++
continue
}
result += char
}
fullResult.push(result)
}