Description
romanize should provide an option to use hyphens/dashes between syllables to clarify the syllable boundaries.
Possible Solution
function romanize(
hangul: string,
options?: { useHyphens?: boolean }
): string;
romanize('학여울'); // "hangnyeoul"
romanize('학여울', { useHyphens: true }); // "hang-nyeo-ul"
etc.
No response