This commit is contained in:
adueck 2023-01-19 17:28:21 +05:00
parent 40641faf7a
commit 8788abf5d5
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export function scriptToPhonetics(p: string): string {
const words = splitWords(p);
const entries = allEntries();
const f = (w: string) => wordToPhonetics(w, entries);
return words.map(f).join(" ");
return words.map(f).join("");
}