UNPKG

hangulx

Version:

Providing various utilities for Hangul

15 lines (14 loc) 590 B
// ㅣ([j])계 상승이중모음(上昇二重母音, rising diphthong) var chars = ['ㅑ', 'ㅕ', 'ㅛ', 'ㅠ', 'ㅒ', 'ㅖ']; export var risingJDiphthongs = chars; export var risingJDiphthongSet = new Set(chars); export var risingJDiphthongCharCodes = chars.map(function (char) { return char.charCodeAt(0); }); export var risingJDiphthongCharCodeSet = new Set(risingJDiphthongCharCodes); export var risingJDiphthongDisassembleMap = new Map([ ['ㅑ', 'ㅣㅏ'], ['ㅕ', 'ㅣㅓ'], ['ㅛ', 'ㅣㅗ'], ['ㅠ', 'ㅣㅜ'], ['ㅒ', 'ㅣㅐ'], ['ㅖ', 'ㅣㅔ'], ]);